copyWith method
Implementation
PaywayPartnerRegisterMerchantResponseStatus copyWith({
String? code,
String? message,
String? trace_id,
String? correlation_id,
}) {
return PaywayPartnerRegisterMerchantResponseStatus(
code: code ?? this.code,
message: message ?? this.message,
trace_id: trace_id ?? this.trace_id,
correlation_id: correlation_id ?? this.correlation_id,
);
}