DiffLogEntryBase constructor

DiffLogEntryBase(
  1. Map<String, dynamic> wrapped, {
  2. MSchemaRef mtype = DiffLogEntryRef,
  3. required bool update,
})

Implementation

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