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