MobileIMSDKLoginSuccess constructor

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

Implementation

MobileIMSDKLoginSuccess({required MobileIMSDKMethodType type, dynamic argument}) : super(type, argument) {
  if (argument is Map) {
    info = MobileIMSDKLoginInfo.fromJson(argument);
  }
}