showToast static method

dynamic showToast(
  1. BuildContext context,
  2. String message
)

toast提示

Implementation

static showToast(BuildContext context, String message) {
  YmToast.show(message, context, duration: YmToast.lengthShort, gravity: YmToast.center);
}