Field.fromJson constructor

Field.fromJson(
  1. dynamic json
)

Implementation

factory Field.fromJson(dynamic json) {
  return Field(json['fieldName'], (json['fieldValue']));
}