RecordTag.fromJson constructor

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

Implementation

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