copyWith method

PaywayCreateTransactionResponse copyWith({
  1. int? status,
  2. String? description,
  3. String? qrString,
  4. String? qrImage,
  5. String? abapayDeeplink,
  6. String? appStore,
  7. String? playStore,
})

Implementation

PaywayCreateTransactionResponse copyWith({
  int? status,
  String? description,
  String? qrString,
  String? qrImage,
  String? abapayDeeplink,
  String? appStore,
  String? playStore,
}) {
  return PaywayCreateTransactionResponse(
    status: status ?? this.status,
    description: description ?? this.description,
    qrString: qrString ?? this.qrString,
    qrImage: qrImage ?? this.qrImage,
    abapayDeeplink: abapayDeeplink ?? this.abapayDeeplink,
    appStore: appStore ?? this.appStore,
    playStore: playStore ?? this.playStore,
  );
}