showInfo static method

void showInfo(
  1. String message, {
  2. String? title,
  3. Duration duration = const Duration(seconds: 4),
  4. BuildContext? context,
})

Muestra un SnackBar informativo (azul)

Implementation

static void showInfo(
  String message, {
  String? title,
  Duration duration = const Duration(seconds: 4),
  BuildContext? context,
}) {
  show(
    message,
    title: title,
    tone: GpSemanticTone.info,
    duration: duration,
    context: context,
  );
}