ServiceNotSupportedException constructor

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

Implementation

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