LineSymbolRenderer constructor

LineSymbolRenderer({
  1. List<int>? dashPattern,
  2. bool isSolid = true,
  3. double? strokeWidth,
})

Implementation

LineSymbolRenderer(
    {List<int>? dashPattern, bool isSolid = true, double? strokeWidth})
    : strokeWidth = strokeWidth ?? strokeWidthForRoundEndCaps,
      _dashPattern = dashPattern,
      super(isSolid: isSolid);