CreateByteMatchSetResponse.fromJson constructor

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

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?,
  );
}