KeyValue.fromJson constructor

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

Implementation

factory KeyValue.fromJson(Map<String, dynamic> json) {
  return KeyValue(
    key: json['Key'] as String?,
    value: json['Value'] as String?,
  );
}