RazorpayApiException constructor

RazorpayApiException({
  1. int? statusCode,
  2. RazorpayError? error,
  3. String? message = 'An API error occurred',
})

Implementation

RazorpayApiException({
  this.statusCode,
  this.error,
  this.message = 'An API error occurred',
});