copyWith method
Creates a copy of this state but with the given fields replaced with the new values.
Implementation
@override
FastAppLifecycleBlocState copyWith({AppLifecycleState? appLifeCycleState}) {
return FastAppLifecycleBlocState(
appLifeCycleState: appLifeCycleState ?? this.appLifeCycleState);
}