NotImplemented constructor

const NotImplemented({
  1. String? message,
  2. ErrorType errorType = ErrorType.notImplemented,
})

Implementation

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