NodeSize.fromJson constructor
Implementation
factory NodeSize.fromJson(Map<String, dynamic> json) => NodeSize(
width: json["width"] == null ? 0 : (json["width"] as double),
height: json["height"] == null ? 0 : (json["height"] as double),
);