MobileIMSDKLoginFail constructor

MobileIMSDKLoginFail({
  1. required MobileIMSDKMethodType type,
  2. dynamic argument,
})

Implementation

MobileIMSDKLoginFail({required MobileIMSDKMethodType type, dynamic argument}) : super(type, argument) {
  if (argument is int) {
    errorCode = argument;
  }
}