showInfoMessage method
Affiche une notification d'information
context.showInfoMessage(
message: 'Une mise à jour est disponible'
);
Implementation
void showInfoMessage({
String? title,
required String message,
WidgetRef? ref,
}) {
_getNotifier(ref)?.showInfo(message, title: title);
}