MethodNotAllowed constructor

const MethodNotAllowed({
  1. String? message,
  2. ErrorType errorType = ErrorType.methodNotAllowed,
})

Implementation

const MethodNotAllowed({
  String? message,
  ErrorType errorType = ErrorType.methodNotAllowed,
}) : super(errorType, message: message);