Dart API Referencedart:htmlReadyState

ReadyState Interface

Contains the set of standard values returned by HTMLDocument.getReadyState.

Static Fields

Code final String COMPLETE #

Indicates the document and all subresources have been loaded.

static final String COMPLETE = "complete";

Code final String INTERACTIVE #

Indicates the document is finished parsing but is still loading subresources.

static final String INTERACTIVE = "interactive";

Code final String LOADING #

Indicates the document is still loading and parsing.

static final String LOADING = "loading";