OpsItemDataValue.fromJson constructor

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

Implementation

factory OpsItemDataValue.fromJson(Map<String, dynamic> json) {
  return OpsItemDataValue(
    type: (json['Type'] as String?)?.toOpsItemDataType(),
    value: json['Value'] as String?,
  );
}