LogOption constructor

const LogOption({
  1. Key? key,
  2. required Icon iconStart,
  3. required String textStart,
  4. required bool value,
  5. required void onTap(
    1. bool value
    ),
})

Implementation

const LogOption({
  super.key,
  required this.iconStart,
  required this.textStart,
  required this.value,
  required this.onTap,
});