defaultContext constant

SvgBrush const defaultContext

Implementation

static const defaultContext = SvgBrush(
  opacity: 1,
  blendMode: null,
  fillOpacity: 1,
  strokeOpacity: 1,
  fill: SvgColor.defaultColor,
  fillEvenOdd: false,
  stroke: SvgColor.none,
  strokeLineCap: PdfLineCap.butt,
  strokeLineJoin: PdfLineJoin.miter,
  strokeMiterLimit: 4,
  strokeWidth: SvgNumeric.value(1, null, SvgUnit.pixels),
  strokeDashArray: [],
  strokeDashOffset: 0,
  fontSize: SvgNumeric.value(16, null),
  fontFamily: 'sans-serif',
  fontWeight: 'normal',
  fontStyle: 'normal',
  textAnchor: SvgTextAnchor.start,
  mask: null,
);