Keypoint.fromMap constructor
Keypoint.fromMap(
- Map map
Implementation
factory Keypoint.fromMap(Map<dynamic, dynamic> map) {
return Keypoint(
MapConverter.safeGetDouble(map, 'x'),
MapConverter.safeGetDouble(map, 'y'),
);
}