FlutterCheckoutException constructor

const FlutterCheckoutException([
  1. FlutterCheckoutExceptionCode code = FlutterCheckoutExceptionCode.UNEXPECTED_ERROR,
  2. String? message = 'An unknown error occurred.',
  3. dynamic details = null
])

Implementation

const FlutterCheckoutException([
  this.code = FlutterCheckoutExceptionCode.UNEXPECTED_ERROR,
  this.message =
  'An unknown error occurred.',
  this.details = null,
]);