QueryCubit<T>.initialValue constructor

QueryCubit<T>.initialValue(
  1. T intialValue
)

Create new Cubit with given intial value of the query InitialValueResult will be set

Implementation

QueryCubit.initialValue(T intialValue)
    : super(AsyncQueryResult.initialValue(intialValue));