Vertex.fromJson constructor

Vertex.fromJson(
  1. Map json_
)

Implementation

Vertex.fromJson(core.Map json_)
  : this(x: json_['x'] as core.int?, y: json_['y'] as core.int?);