QueryResultNotifier<T>.initialValue constructor

QueryResultNotifier<T>.initialValue(
  1. T initialValue
)

Create new Notifier with given intial value of the query InitialValueResult will be used

Implementation

QueryResultNotifier.initialValue(T initialValue)
    : super(AsyncQueryResult<T>.initialValue(initialValue));