ImCallback constructor
ImCallback({
- VoidCallback? onSuccess,
- ErrorCallback? onError,
Implementation
ImCallback({VoidCallback? onSuccess, ErrorCallback? onError}){
if (onSuccess != null) {
this.onSuccess = onSuccess;
}
if (onError != null) {
this.onError = onError;
}
}