ModelClassName constructor

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

Creates a new ModelClassName instance.

Parameters:

  • className: The name of the class
  • parent: The parent context or container of this class
  • created: Whether this class has been created/generated
  • parentList: Optional parent list context

Implementation

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