SetUpMarker constructor

SetUpMarker(
  1. Map<String, Object?> data, {
  2. int? id,
  3. String? textValue,
  4. required double latitude,
  5. required double longitude,
  6. int? viewId,
  7. int? statusData,
  8. String? urlImage,
  9. String? title,
  10. String? address,
  11. double? price,
  12. double? area,
  13. List<Map<String, Object>>? dsHinhAnh,
  14. int? tongBDS,
  15. Marker? ggMaker,
  16. Color? backGroundColor = Colors.white,
  17. double? fontSize = 20,
  18. String? iconUI = '',
  19. String? iconSelected = '',
  20. Color? textColor = Colors.red,
  21. FontWeight? fontWeight = FontWeight.bold,
  22. EdgeInsets? padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
})

Implementation

SetUpMarker(
  this.data, {
  this.id,
  this.textValue,
  required this.latitude,
  required this.longitude,
  this.viewId,
  this.statusData,
  this.urlImage,
  this.title,
  this.address,
  this.price,
  this.area,
  this.dsHinhAnh,
  this.tongBDS,
  this.ggMaker,
  this.backGroundColor = Colors.white,
  this.fontSize = 20,
  this.iconUI = '',
  this.iconSelected = '',
  this.textColor = Colors.red,
  this.fontWeight = FontWeight.bold,
  this.padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
});