i would like to manage a checkbox in flutter with Maestro Mobile Dev (https://maestro.mobile.dev/) but maestro doesn't identify my widget
CheckboxListTile(
   title: Text('localizations.welcomeDisclaimerChoice'),
   value: checkedValue,
   onChanged: (newValue) {
      setState(() {
          checkedValue = newValue!;
      });
   },
);
i don't find semantic way to resolve my issue Any help
Thx