fillPath method

  1. @override
void fillPath(
  1. List path,
  2. PStyle style, {
  3. bool closePath = false,
})
override

Fill a path of points.

Implementation

@override
void fillPath(List path, PStyle style, {bool closePath = false}) {
  var points = _toPoints(path, closePath);
  if (points.length < 2) return;

  throw UnimplementedError();
}