MModuleDefinition constructor

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

Implementation

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