NotAcceptable constructor

const NotAcceptable({
  1. String? message,
  2. ErrorType errorType = ErrorType.notAcceptable,
})

Implementation

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