Redirect constructor

const Redirect({
  1. required String success,
  2. required String failed,
  3. String? checkoutUrl,
  4. String? url,
  5. String? returnUrl,
})

Implementation

const Redirect({
  required this.success,
  required this.failed,
  this.checkoutUrl,
  this.url,
  this.returnUrl,
});