merge method
Combines the current state with the new model.
It will replace the existing appLifeCycleState with the model
's
corresponding value.
Implementation
@override
FastAppLifecycleBlocState merge(covariant FastAppLifecycleBlocState model) {
return copyWith(appLifeCycleState: model.appLifeCycleState);
}