HereMap constructor

const HereMap({
  1. Key? key,
  2. HereMapCreatedCallback? onMapCreated,
  3. Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers,
  4. NativeViewMode mode = NativeViewMode.virtualDisplay,
  5. dynamic options,
})

Creates a widget that displays a map.

Implementation

const HereMap({
  Key? key,
  this.onMapCreated,
  this.gestureRecognizers,
  this.mode = NativeViewMode.virtualDisplay,
  options,
})  : this._options = options,
      super(key: key);