MapWidget constructor

const MapWidget({
  1. double lat = 37.414,
  2. double lng = -122.077,
  3. double zoom = 11,
  4. double? width,
  5. double? height,
  6. String? name,
  7. DslExpression? visible,
})

Implementation

const MapWidget({
  this.lat = 37.414,
  this.lng = -122.077,
  this.zoom = 11,
  this.width,
  this.height,
  String? name,
  DslExpression? visible,
}) : super(name: name, visible: visible);