showInfoSnackbar method
void
showInfoSnackbar({
- required String title,
- String? subtitle,
- Duration? duration,
- bool showProgressIndicator = false,
- ContentDesignStyle? designStyle,
- double? blur,
- 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,
);
}