DisabledException constructor

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

Implementation

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