merge method
Merges this FastSettingsDescriptor instance with another instance of the same class.
The model
parameter is the instance to merge with this instance.
Implementation
@override
FastSettingsDescriptor merge(covariant FastSettingsDescriptor model) {
return copyWith(
categories: model.categories,
);
}