PatchOperation constructor

PatchOperation({
  1. String? from,
  2. Op? op,
  3. String? path,
  4. String? value,
})

Implementation

PatchOperation({
  this.from,
  this.op,
  this.path,
  this.value,
});