show method
Implementation
void show(String text, {ToastPosition? position}) {
if (!settingChangeNotifier.enableToast) {
return;
}
position ??= ToastPosition.bottom;
Log.i(tag,"show: $text");
showToast(text, position: position, textPadding: const EdgeInsets.all(10), radius: 5.0);
}