ChangeBase constructor

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

Implementation

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