MEntityDefinition constructor

MEntityDefinition(
  1. Map<String, dynamic> wrapped, {
  2. MSchemaRef mtype = MEntityDefinitionRef,
  3. bool update = true,
})

Implementation

MEntityDefinition(Map<String, dynamic> wrapped,
    {MSchemaRef mtype = MEntityDefinitionRef, bool update = true })
    : super(wrapped, mtype: mtype, update: false) {
  if(update == true) takeFromMap(wrapped, copyEntries: false);
}