KakaoFigure constructor

KakaoFigure({
  1. required List<KakaoLatLng> path,
  2. Color strokeColor = Colors.blue,
  3. double strokeWeight = 2.0,
  4. double strokeColorOpacity = 0.8,
  5. Color polygonColor = Colors.lightBlue,
  6. double polygonColorOpacity = 0.7,
  7. StrokeStyle strokeStyle = StrokeStyle.solid,
})

Implementation

KakaoFigure(
    {required this.path,
    this.strokeColor = Colors.blue,
    this.strokeWeight = 2.0,
    this.strokeColorOpacity = 0.8,
    this.polygonColor = Colors.lightBlue,
    this.polygonColorOpacity = 0.7,
    this.strokeStyle = StrokeStyle.solid});