FastAppLoaderBlocState constructor

FastAppLoaderBlocState({
  1. bool isLoading = false,
  2. bool isLoaded = false,
  3. double progress = 0,
  4. dynamic error,
})

Implementation

FastAppLoaderBlocState({
  this.isLoading = false,
  this.isLoaded = false,
  this.progress = 0,
  dynamic error,
}) : super(error: error);