ModelClassName constructor

ModelClassName({
  1. required String className,
  2. required String parent,
  3. required bool created,
  4. String? parentList,
})

Implementation

ModelClassName({
  required this.className,
  required this.parent,
  required this.created,
  this.parentList,
});