copyWith method
Implementation
RefundCheckAtol copyWith({
String? externalId,
Receipt? receipt,
Service? service,
String? timestamp,
}) =>
RefundCheckAtol(
externalId: externalId ?? this.externalId,
receipt: receipt ?? this.receipt,
service: service ?? this.service,
timestamp: timestamp ?? this.timestamp,
);