SimpleMap constructor

const SimpleMap({
  1. required String instructions,
  2. void onHover(
    1. String id,
    2. String name,
    3. bool isHovering
    )?,
  3. List<SimpleMapMarker>? markers,
  4. Color? defaultColor,
  5. Map? colors,
  6. void callback(
    1. String id,
    2. String name,
    3. TapUpDetails tapDetails
    )?,
  7. BoxFit? fit,
  8. CountryBorder? countryBorder,
  9. Key? key,
})

Implementation

const SimpleMap({
  required this.instructions,
  this.onHover,
  this.markers,
  this.defaultColor,
  this.colors,
  this.callback,
  this.fit,
  this.countryBorder,
  Key? key,
}) : super(key: key);