SplashState constructor

const SplashState({
  1. bool isLoading = true,
  2. String? error,
  3. bool isSuccess = false,
  4. String statusMessage = 'Starting...',
})

Implementation

const SplashState({
  this.isLoading = true,
  this.error,
  this.isSuccess = false,
  this.statusMessage = 'Starting...',
});