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