merge method

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

Creates a new TModel where each properties from this object has been merged with the matching properties from the other object.

For example:

var myModel3 = myModel1.merge(myModel2);

Implementation

@override
FastAppFeaturesBlocState merge(covariant FastAppFeaturesBlocState model) {
  return copyWith(
    isInitializing: model.isInitializing,
    isInitialized: model.isInitialized,
    features: model.features,
    isRetrievingFeatures: model.isRetrievingFeatures,
  );
}