copyWith method

  1. @override
Feature<T> copyWith({
  1. T? value,
})
override

Implementation

@override
Feature<T> copyWith({T? value}) =>
    FeatureWithEnum(value: value ?? this.value);