Dart API Referencedart:coreFutureNotCompleteException

FutureNotCompleteException class

Thrown when reading a future's properties before it is complete.

class FutureNotCompleteException implements Exception {
  FutureNotCompleteException() {}
  String toString() => "Exception: future has not been completed";
}

Implements

Exception

Constructors

new FutureNotCompleteException() #

FutureNotCompleteException() {}

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "Exception: future has not been completed";