ActionStatusIndicator<T> constructor
- Key? key,
- required OnActionCallback<
T> action, - required SuccessCallback<
T> onSuccess, - ErrorCallback? onError,
- Widget? errorTitle,
- Widget? errorContent,
- Widget? errorButton,
- Widget? loadingChild,
Implementation
const ActionStatusIndicator({
super.key,
required this.action,
required this.onSuccess,
this.onError,
this.errorTitle,
this.errorContent,
this.errorButton,
this.loadingChild,
});