fromJson static method
Implementation
static TCICHeartbeatRepModel fromJson(Map<String, dynamic> json) {
return TCICHeartbeatRepModel(
errorCode: json['error_code'] ?? 0,
errorMsg: json['error_msg'] ?? '',
requestId: json['request_id'] ?? '',
interval: json['interval'] ?? 0,
);
}