import 'package:bot_toast/bot_toast.dart';

class ASToast {
  static show(String text) {
    BotToast.showText(text: text);
  }
}