MobileIMSDKErrorResponseInfo.fromJson constructor

MobileIMSDKErrorResponseInfo.fromJson(
  1. Map json
)

Implementation

MobileIMSDKErrorResponseInfo.fromJson(Map<dynamic, dynamic> json) {
  errorMsg = json['errorMsg'];
  isUnlogin = json['isUnlogin'];
  errorCode = json['errorCode'];
}