copyWith method
Implementation
MandatoryClientFields copyWith({
String? clientBody,
String? receiptTypeClient,
}) {
return MandatoryClientFields(
clientBody: clientBody ?? this.clientBody,
receiptTypeClient: receiptTypeClient ?? this.receiptTypeClient,
);
}