copyWith method

  1. @override
FeatureAbstract<T> copyWith({
  1. required T value,
})
override

Implementation

@override
FeatureAbstract<T> copyWith({required T value}) {
  return FeatureGeneric(key: key, value: value);
}