show static method

dynamic show(
  1. String msg, {
  2. bool inMiddle = false,
})

Implementation

static show(String msg, {bool inMiddle = false}) {
  if (msg.isNotEmpty) {
    showToast(
      msg,
      textPadding: const EdgeInsets.all(10),
      position: ToastPosition.bottom,
    );
  }
}