HelpError class abstract

Errors

An Error in Dart should be thrown for unexpected program flow and should not be caught but addressed by the programmer: Error and its subclasses are for programmatic errors. If one of those occurs, your code is bad and you should fix your code. Except in a few special circumstances, idiomatic Dart should throw Errors, but never catch them. They exists specifically to not be caught so that they take down the app and alert the programmer to the location of the bug.

Flutter Error Types:

  • ArgumentError
  • AssertionError
  • AsyncError
  • CastError
  • ConcurrentModificationError
  • CyclicInitializationError
  • DriverError
  • FallThroughError
  • FlutterError
  • HttpProfileRequestError
  • JsonUnsupportedObjectError
  • NoSuchMethodError
  • NullThrownError
  • OutOfMemoryError
  • RemoteError
  • StackOverflowError
  • StateError
  • TypeError
  • UnimplementedError
  • UnsupportedError

Constructors

HelpError()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited