FormPatchOperation.fromJson constructor

FormPatchOperation.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}