showTextToast method

  1. @override
CancelFunc showTextToast({
  1. required String text,
})
override

Implementation

@override
CancelFunc showTextToast({required String text}) {
  CancelFunc cancel = BotToast.showText(text: text);
  return cancel;
}