onCheck method
Implementation
Future<bool> onCheck(OptionModel option) async {
// set answer
bool ok = await answer(option.value);
// set data
if (ok == true) ok = await setData();
// fire onchange
if (ok == true) ok = await onChange(context);
return ok;
}