DiffLogEntryBase.of constructor

DiffLogEntryBase.of({
  1. List<Change>? changes,
})

Implementation

DiffLogEntryBase.of({List<Change>? changes}) : super(<String, dynamic>{}, mtype: DiffLogEntryRef) {
  if (changes != null) this.changes = changes;
}