ModelClassName constructor
ModelClassName({})
Creates a new ModelClassName instance.
Parameters:
className: The name of the classparent: The parent context or container of this classcreated: Whether this class has been created/generatedparentList: Optional parent list context
Implementation
ModelClassName({
required this.className,
required this.parent,
required this.created,
this.parentList,
});