PinData constructor

PinData({
  1. required LatLong latLong,
  2. String title = '',
  3. String detail = '',
  4. Color color = Colors.red,
  5. IconData icon = Icons.location_on,
  6. Widget? child,
  7. Widget? detailWidget,
  8. void onTap()?,
})

Implementation

PinData({
  required this.latLong,
  this.title = '',
  this.detail = '',
  this.color = Colors.red,
  this.icon = Icons.location_on,
  this.child,
  this.detailWidget,
  this.onTap,
});