copyWith method

TapPayPrime copyWith({
  1. bool? success,
  2. int? status,
  3. String? message,
  4. String? prime,
})

Implementation

TapPayPrime copyWith({
  bool? success,
  int? status,
  String? message,
  String? prime,
}) {
  return TapPayPrime(
    success: success ?? this.success,
    status: status ?? this.status,
    message: message ?? this.message,
    prime: prime ?? this.prime,
  );
}