PathIconData constructor

const PathIconData({
  1. required Path path,
  2. required Rect viewBox,
  3. String? id,
})

Create data from the given path and its viewBox describing the effective area.

Implementation

const PathIconData({
  required this.path,
  required this.viewBox,
  this.id,
});