copyWith method

RefundCheckAtol copyWith({
  1. String? externalId,
  2. Receipt? receipt,
  3. Service? service,
  4. String? timestamp,
})

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,
    );