copyWith method

  1. @override
FastAppLifecycleBlocState copyWith({
  1. AppLifecycleState? appLifeCycleState,
})
override

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);
}