SvgShape constructor

const SvgShape({
  1. required Path path,
  2. required Color color,
  3. List<Path> clips = const <ui.Path>[],
  4. bool followsCurrentColor = false,
})

Creates a flattened shape.

Implementation

const SvgShape({
  required this.path,
  required this.color,
  this.clips = const <ui.Path>[],
  this.followsCurrentColor = false,
});