initial method
- @override
override
Returns the initial summary of stream interaction, typically representing the fact that no interaction has happened at all.
Sub-classes must override this method to provide the initial value for the fold computation.
Implementation
@override
AsyncSnapshot<T> initial() => AsyncSnapshot<T>.withData(ConnectionState.none, initialData);