HardwareMapView constructor

const HardwareMapView({
  1. Key? key,
  2. List<MapMarker> markers = const [],
  3. dynamic onTap(
    1. MapLocation
    )?,
  4. Widget? overlay,
})

Implementation

const HardwareMapView({
  Key? key,
  this.markers = const [],
  this.onTap,
  this.overlay,
}) : super(key: key);