showToast function

void showToast(
  1. String? hint
)

Implementation

void showToast(String? hint) {
  if (_showToast != null && StringUtil.isNotEmpty(hint)) _showToast!(hint!);
}