MLHandKeyPoint.fromMap constructor

MLHandKeyPoint.fromMap(
  1. Map map
)

Implementation

factory MLHandKeyPoint.fromMap(Map<dynamic, dynamic> map) {
  return MLHandKeyPoint._(
    pointX: map['pointX'],
    pointY: map['pointY'],
    score: map['score'],
    type: map['type'],
  );
}