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