CurrentLocationToolRF constructor

CurrentLocationToolRF({
  1. Key? key,
  2. required MapControllerRF controller,
  3. Color? backgroundColor = Colors.white,
  4. Color? foregroundColor = Colors.black,
  5. ShapeBorder shape = const CircleBorder(),
})

Implementation

CurrentLocationToolRF({
  super.key,
  required this.controller,
  this.backgroundColor = Colors.white,
  this.foregroundColor = Colors.black,
  this.shape = const CircleBorder(),
});