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