ArCoreHitTestResult.fromMap constructor

ArCoreHitTestResult.fromMap(
  1. Map map
)

Implementation

ArCoreHitTestResult.fromMap(Map<dynamic, dynamic> map) {
  this.distance = map['distance'];
  this.pose = ArCorePose.fromMap(map['pose']);
}