SvgCanvas constructor Null safety

SvgCanvas(
  1. {required double width,
  2. required double height,
  3. required List<SvgWidget> children,
  4. Color? fill}
)

Generate a SVG structure width width of SVG height height of SVG children three with SVG elements

Implementation

SvgCanvas(
    {required this.width,
    required this.height,
    required this.children,
    this.fill});