NormalizedCoordinate.fromJson constructor

NormalizedCoordinate.fromJson(
  1. Map json_
)

Implementation

NormalizedCoordinate.fromJson(core.Map json_)
  : this(
      x: (json_['x'] as core.num?)?.toDouble(),
      y: (json_['y'] as core.num?)?.toDouble(),
    );