Component.fromJson constructor
Implementation
factory Component.fromJson(Map<String, dynamic> json) => Component(
name: json["name"],
componentId: json["componentId"],
height: json["height"],
width: json["width"],
x: json["x"],
y: json["y"],
id: json["_id"],
);