MapView constructor

const MapView({
  1. Key? key,
  2. required String mapboxAccessToken,
  3. required String mapboxStyleUrl,
  4. VoidCallback? onMapCreated,
})

//////////// ////////////

Implementation

// II.B - Constructor
///////////////
const MapView({
  super.key,
  required this.mapboxAccessToken,
  required this.mapboxStyleUrl,
  this.onMapCreated,
});