NotModifiedException constructor

NotModifiedException({
  1. String message = 'Not modifier',
  2. Object? origin,
  3. StackTrace? stackTrace,
})

Implementation

NotModifiedException({
  String message = 'Not modifier',
  Object? origin,
  StackTrace? stackTrace,
}) : super(message: message, origin: origin, stackTrace: stackTrace ?? StackTrace.current);