showInfoMessage method
Implementation
void showInfoMessage(String message, {String? title}) {
if (AlertController.instance.onShowInfo == null) {
alertRequestQueue.add(
AlertRequest(
message: message,
title: title,
requestType: AlertRequestType.info,
),
);
redraw();
} else {
AlertController.instance.onShowInfo?.call(
message: message,
title: title,
);
}
}