buildMarker static method

Marker buildMarker(
  1. String id,
  2. LatLng point
)

Implementation

static Marker buildMarker(String id, LatLng point) => Marker(
      key: Key(id),
      point: point,
      child: const Icon(
        FontAwesomeIcons.seedling,
        color: Colors.green,
        size: 30.0,
      ),
      alignment: Alignment.topCenter,
    );