NiceOrgNode constructor
- required String id,
- required String name,
- String? title,
- ImageProvider<
Object> ? avatar, - List<
NiceOrgNode> children = const [], - Color? color,
Implementation
const NiceOrgNode({
required this.id,
required this.name,
this.title,
this.avatar,
this.children = const [],
this.color,
});