AppState constructor

AppState({
  1. PackageInfo? packageInfo,
  2. UserProfileResponse? userProfileResponse,
  3. bool? userProfileFetched,
  4. bool? isLoading,
})

Implementation

AppState({
  this.packageInfo,
  this.userProfileResponse,
  this.userProfileFetched,
  this.isLoading,
});