GetByteMatchSetResponse.fromJson constructor

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

Implementation

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