copyWith method

PaymayaRedirectUrls copyWith({
  1. String? success,
  2. String? failure,
  3. String? cancel,
})

Implementation

PaymayaRedirectUrls copyWith({
  String? success,
  String? failure,
  String? cancel,
}) {
  return PaymayaRedirectUrls(
    success: success ?? this.success,
    failure: failure ?? this.failure,
    cancel: cancel ?? this.cancel,
  );
}