Component.fromJson constructor

Component.fromJson(
  1. Map<String, dynamic> json
)

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"],
    );