showSuccess static method
void
showSuccess({
- required String message,
- String? title,
- Duration? toastDuration,
- BuildContext? context,
- bool permanent = false,
- List<
GrxToastAction> ? actions,
Implementation
static void showSuccess({
required String message,
String? title,
Duration? toastDuration,
BuildContext? context,
bool permanent = false,
List<GrxToastAction>? actions,
}) => _show(
message: message,
backgroundColor: GrxColors.success,
title: title,
toastDuration: toastDuration,
context: context,
permanent: permanent,
actions: actions,
);