KakaoMapNativeView constructor

const KakaoMapNativeView({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. double latitude = 37.402001,
  5. double longitude = 127.108678,
  6. int zoomLevel = 7,
  7. MapType mapType = "map",
  8. OverlayType? overlay,
})

Implementation

const KakaoMapNativeView({
  Key? key,
  required this.width,
  required this.height,
  this.latitude = 37.402001,
  this.longitude = 127.108678,
  this.zoomLevel = 7,
  this.mapType = "map",
  this.overlay,
}) : super(key: key);