showEralpNotification static method
Implementation
static void showEralpNotification({
@required Widget child,
Duration duration,
bool showProgressIndicator,
final Color progressBackgroundColor,
final Color progressValueColor,
}) {
final _showEralpBar = ShowEralpNotification(
child: child,
duration: duration ?? null,
showProgressIndicator: showProgressIndicator ?? false,
progressBackgroundColor: progressBackgroundColor,
progressValueColor: progressValueColor,
);
_showEralpBar.show(_globalProvider.globalContext);
}