InstallFeature constructor

const InstallFeature({
  1. required String id,
  2. required String displayName,
  3. required String description,
  4. bool isDefault = true,
})

Implementation

const InstallFeature({
  required this.id,
  required this.displayName,
  required this.description,
  this.isDefault = true,
});