AsyncValue<T>.loading constructor

const AsyncValue<T>.loading([
  1. int? retryCount
])

Implementation

const AsyncValue.loading([this.retryCount])
    : state = AsyncState.loading,
      data = null,
      error = null,
      stackTrace = null;