showInfoSnackbar method

void showInfoSnackbar({
  1. required String title,
  2. String? subtitle,
  3. Duration? duration,
  4. bool showProgressIndicator = false,
  5. ContentDesignStyle? designStyle,
  6. double? blur,
  7. ImageFilter? backdropFilter,
})

Shows an info snackbar

Example:

context.showInfoSnackbar(
  title: 'Info',
  subtitle: 'New update available',
);

Implementation

void showInfoSnackbar({
  required String title,
  String? subtitle,
  Duration? duration,
  bool showProgressIndicator = false,
  ContentDesignStyle? designStyle,
  double? blur,
  ImageFilter? backdropFilter,
}) {
  SavePointsSnackbar.show(
    this,
    title: title,
    subtitle: subtitle,
    type: SnackbarType.info,
    duration: duration,
    showProgressIndicator: showProgressIndicator,
    designStyle: designStyle,
    blur: blur,
    backdropFilter: backdropFilter,
  );
}