SvgPath.raw constructor

const SvgPath.raw({
  1. String? className,
  2. Map<String, String>? attrs,
  3. Map<String, BloomEventHandler>? on,
})

Const constructor for SVG <path> without attribute shorthands.

Implementation

const SvgPath.raw({
  super.className,
  super.attrs,
  super.on,
}) : super('path');