Dart API Referencedart:coreUnsupportedOperationException

UnsupportedOperationException class

class UnsupportedOperationException implements Exception {
  const UnsupportedOperationException(String this._message);
  String toString() => "UnsupportedOperationException: $_message";
  final String _message;
}

Implements

Exception

Constructors

const UnsupportedOperationException(String _message) #

const UnsupportedOperationException(String this._message);

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "UnsupportedOperationException: $_message";