ChangeBase.of constructor
Implementation
ChangeBase.of({required String operation, required String path, String? from})
: super(<String, dynamic>{}, mtype: ChangeRef) {
this.operation = operation;
this.path = path;
if (from != null) this.from = from;
}