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