FastFeatureEntity constructor

const FastFeatureEntity({
  1. required String name,
  2. bool? isEnabled,
})

Constructs a FastFeatureEntity instance.

The name parameter is required and represents the name of the feature entity.

Implementation

const FastFeatureEntity({
  required this.name,
  bool? isEnabled,
}) : isEnabled = isEnabled ?? false;