merge method

  1. @override
FastAppLoaderBlocState merge(
  1. covariant FastAppLoaderBlocState 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
FastAppLoaderBlocState merge(covariant FastAppLoaderBlocState model) {
  return copyWith(
    isLoading: model.isLoading,
    isLoaded: model.isLoaded,
    progress: model.progress,
    error: model.error,
  );
}