Interface StatefulWidget

A contract for widgets that want to store and restore their inner state, between sessions.

interface StatefulWidget {
    restoreState(oldState): void;
    storeState(): undefined | object;
}

Implemented by

Methods