PaystackException constructor

const PaystackException({
  1. required String message,
  2. int? statusCode,
  3. String? responseBody,
})

Implementation

const PaystackException({
  required this.message,
  this.statusCode,
  this.responseBody,
});