FeatureNode constructor

const FeatureNode({
  1. Key? key,
  2. required String featureName,
})

Implementation

const FeatureNode({
  Key? key,
  required this.featureName,
}) : super(key: key);