SVGBoundingBoxOptions constructor

SVGBoundingBoxOptions({
  1. bool? fill,
  2. bool? stroke,
  3. bool? markers,
  4. bool? clipped,
})

Implementation

factory SVGBoundingBoxOptions(
        {bool? fill, bool? stroke, bool? markers, bool? clipped}) =>
    SVGBoundingBoxOptions._(
        fill: fill ?? true,
        stroke: stroke ?? false,
        markers: markers ?? false,
        clipped: clipped ?? false);