copyWith method

MandatoryClientFields copyWith({
  1. String? clientBody,
  2. String? receiptTypeClient,
})

Implementation

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