FeatureBool constructor

const FeatureBool({
  1. required String key,
  2. required bool value,
})

Implementation

const FeatureBool({
  required String key,
  required bool value,
}) : super(key: key, value: value);