DynamicData constructor

DynamicData({
  1. int? idModule,
  2. String? module,
  3. int? parentId,
  4. int? createdBy,
  5. String? createdOn,
  6. int? updatedBy,
  7. String? updatedOn,
  8. bool? isActive,
  9. bool hasChildren = true,
  10. bool isExpanded = false,
  11. bool isLoading = false,
  12. List<DynamicData> children = const [],
})

Implementation

DynamicData(
    {this.idModule,
      this.module,
      this.parentId,
      this.createdBy,
      this.createdOn,
      this.updatedBy,
      this.updatedOn,
      this.isActive,
      this.hasChildren = true,
      this.isExpanded = false,
      this.isLoading = false,
      this.children = const []});