SmartHomeBaseResponse.fromJson constructor
Implementation
factory SmartHomeBaseResponse.fromJson(Map<String, dynamic> json) => SmartHomeBaseResponse(
errorMsg: json["errorMsg"],
message: json["message"],
errorCode: json["errorCode"],
data: json["data"],
);