GetByteMatchSetResponse.fromJson constructor
Implementation
factory GetByteMatchSetResponse.fromJson(Map<String, dynamic> json) {
return GetByteMatchSetResponse(
byteMatchSet: json['ByteMatchSet'] != null
? ByteMatchSet.fromJson(json['ByteMatchSet'] as Map<String, dynamic>)
: null,
);
}