UpdateByteMatchSetResponse.fromJson constructor

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

Implementation

factory UpdateByteMatchSetResponse.fromJson(Map<String, dynamic> json) {
  return UpdateByteMatchSetResponse(
    changeToken: json['ChangeToken'] as String?,
  );
}