isReady property

bool get isReady

True once ready has completed successfully. false if it hasn't completed yet, or if it completed with an error — check initError to tell those two apart.

Implementation

bool get isReady => _readyCompleter.isCompleted && initError == null;