FormPatchOperation.fromJson constructor
Create from JSON.
Implementation
factory FormPatchOperation.fromJson(Map<String, dynamic> json) {
return FormPatchOperation(
op: json['op'] as String,
path: json['path'] as String,
value: json['value'],
from: json['from'] as String?,
);
}