copyWith method
Implementation
MandatoryEcFields copyWith({
String? aid,
String? arqc,
String? ecBody,
String? nsuLocal,
String? receiptTypeEc,
}) {
return MandatoryEcFields(
aid: aid ?? this.aid,
arqc: arqc ?? this.arqc,
ecBody: ecBody ?? this.ecBody,
nsuLocal: nsuLocal ?? this.nsuLocal,
receiptTypeEc: receiptTypeEc ?? this.receiptTypeEc,
);
}