Option constructor
const
Option({
- IconData icon = Icons.gear_six_fill,
- required String name,
- String? description,
- bool shouldShow(
- BuildContext context
Implementation
const Option(
{this.icon = Icons.gear_six_fill,
required this.name,
this.description,
this.shouldShow = _defShouldShow});