merge method

  1. @override
FastAppLifecycleBlocState merge(
  1. covariant FastAppLifecycleBlocState model
)
override

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