copyWith method
MandatoryAllReceiptsFields
copyWith(
{ - String? authorizationCode,
- String? brand,
- String? cardLastDigits,
- String? city,
- String? ecDocument,
- String? ecName,
- String? ecNumber,
- String? letterTypeTransaction,
- String? version,
- String? getnetLogo,
- String? dateTime,
- String? nsu,
- String? terminal,
})
Implementation
MandatoryAllReceiptsFields copyWith({
String? authorizationCode,
String? brand,
String? cardLastDigits,
String? city,
String? ecDocument,
String? ecName,
String? ecNumber,
String? letterTypeTransaction,
String? version,
String? getnetLogo,
String? dateTime,
String? nsu,
String? terminal,
}) {
return MandatoryAllReceiptsFields(
authorizationCode: authorizationCode ?? this.authorizationCode,
brand: brand ?? this.brand,
cardLastDigits: cardLastDigits ?? this.cardLastDigits,
city: city ?? this.city,
ecDocument: ecDocument ?? this.ecDocument,
ecName: ecName ?? this.ecName,
ecNumber: ecNumber ?? this.ecNumber,
letterTypeTransaction:
letterTypeTransaction ?? this.letterTypeTransaction,
version: version ?? this.version,
getnetLogo: getnetLogo ?? this.getnetLogo,
dateTime: dateTime ?? this.dateTime,
nsu: nsu ?? this.nsu,
terminal: terminal ?? this.terminal,
);
}