NiceOrgNode constructor

const NiceOrgNode({
  1. required String id,
  2. required String name,
  3. String? title,
  4. ImageProvider<Object>? avatar,
  5. List<NiceOrgNode> children = const [],
  6. Color? color,
})

Implementation

const NiceOrgNode({
  required this.id,
  required this.name,
  this.title,
  this.avatar,
  this.children = const [],
  this.color,
});