UpiException constructor

UpiException({
  1. required UpiExceptionType type,
  2. required String? message,
  3. required dynamic details,
  4. required String? stacktrace,
})

Implementation

UpiException({
  required this.type,
  required this.message,
  required this.details,
  required this.stacktrace,
});