Paths class abstract

Some useful path functions for rendering.

Constructors

Paths()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

circle({required Offset center, required double radius, Path? path}) Path
A circle path function.
dashLine({required Path source, required List<double> dashArray, DashOffset? dashOffset, Path? path}) Path
A dash line path function.
line({required Offset from, required Offset to, Path? path}) Path
A line path function.
polyline({required List<Offset> points, required bool smooth, Path? path}) Path
A polyline path function.
rSector({required Offset center, required double r, required double r0, required double startAngle, required double endAngle, required bool clockwise, required Radius topLeft, required Radius topRight, required Radius bottomRight, required Radius bottomLeft, Path? path}) Path
A sector with corner radiuses.
sector({required Offset center, required double r, required double r0, required double startAngle, required double endAngle, required bool clockwise, Path? path}) Path
A sector path function.