info static method
Show Info Toast
Implementation
static void info(String message) {
try {
if (Platform.isWindows || Platform.isLinux || Platform.isMacOS) {
jLog.i('JMessage.info: $message');
return;
}
Fluttertoast.showToast(
msg: message,
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.BOTTOM,
backgroundColor: Colors.black87,
textColor: Colors.white,
fontSize: 16.0,
// fontAsset: 'assets/fonts/Tajawal-Medium.ttf',
);
} catch (ex) {
jLog.e('JMessage.info: $ex');
}
}