BaseException constructor

BaseException({
  1. String? type,
  2. String? message,
})

Implementation

BaseException({String? type, String? message})
    : super(type: type, code: 'BaseException', message: message);