RoundedRectSymbolRenderer constructor

RoundedRectSymbolRenderer({
  1. bool isSolid = true,
  2. double? radius,
})

Implementation

RoundedRectSymbolRenderer({bool isSolid = true, double? radius})
    : radius = radius ?? 1.0,
      super(isSolid: isSolid);