setCallback method
void
setCallback({
- OnUpdateSuccess? onUpdateSuccess,
- OnError? onError,
- OnUpdateWithError? onUpdateWithError,
Implementation
void setCallback({
OnUpdateSuccess? onUpdateSuccess,
OnError? onError,
OnUpdateWithError? onUpdateWithError,
}) {
_onUpdateSuccess = onUpdateSuccess;
_onError = onError;
_onUpdateWithError = onUpdateWithError;
}