MobileIMSDKErrorResponse constructor

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

Implementation

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