PaintRenderingContext2D class

Annotations
  • @Native("PaintRenderingContext2D")

Properties

currentTransform ↔ Matrix?
read / write
fillStyle ↔ Object?
read / write
filter ↔ String?
read / write
globalAlpha ↔ num?
read / write
globalCompositeOperation ↔ String?
read / write
hashCode → int
The hash code for this object.
read-onlyinherited
imageSmoothingEnabled ↔ bool?
read / write
imageSmoothingQuality ↔ String?
read / write
lineCap ↔ String?
read / write
lineDashOffset ↔ num?
read / write
lineJoin ↔ String?
read / write
lineWidth ↔ num?
read / write
miterLimit ↔ num?
read / write
runtimeType → Type
A representation of the runtime type of the object.
read-onlyinherited
shadowBlur ↔ num?
read / write
shadowColor ↔ String?
read / write
shadowOffsetX ↔ num?
read / write
shadowOffsetY ↔ num?
read / write
strokeStyle ↔ Object?
read / write

Methods

arc(num x, num y, num radius, num startAngle, num endAngle, bool? anticlockwise) → void
arcTo(num x1, num y1, num x2, num y2, num radius) → void
beginPath() → void
bezierCurveTo(num cp1x, num cp1y, num cp2x, num cp2y, num x, num y) → void
clearRect(num x, num y, num width, num height) → void
clip([dynamic path_OR_winding, String? winding]) → void
closePath() → void
createLinearGradient(num x0, num y0, num x1, num y1) → CanvasGradient
createPattern(dynamic image, String repetitionType) → CanvasPattern?
createRadialGradient(num x0, num y0, num r0, num x1, num y1, num r1) → CanvasGradient
drawImage(dynamic image, num sx_OR_x, num sy_OR_y, [num? sw_OR_width, num? height_OR_sh, num? dx, num? dy, num? dw, num? dh]) → void
ellipse(num x, num y, num radiusX, num radiusY, num rotation, num startAngle, num endAngle, bool? anticlockwise) → void
fill([dynamic path_OR_winding, String? winding]) → void
fillRect(num x, num y, num width, num height) → void
getLineDash() → List<num>
isPointInPath(dynamic path_OR_x, num x_OR_y, [dynamic winding_OR_y, String? winding]) → bool
isPointInStroke(dynamic path_OR_x, num x_OR_y, [num? y]) → bool
lineTo(num x, num y) → void
moveTo(num x, num y) → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
quadraticCurveTo(num cpx, num cpy, num x, num y) → void
rect(num x, num y, num width, num height) → void
resetTransform() → void
restore() → void
rotate(num angle) → void
save() → void
scale(num x, num y) → void
setLineDash(List<num> dash) → void
setTransform(num a, num b, num c, num d, num e, num f) → void
stroke([Path2D? path]) → void
strokeRect(num x, num y, num width, num height) → void
toString() → String
A string representation of this object.
inherited
transform(num a, num b, num c, num d, num e, num f) → void
translate(num x, num y) → void

Operators

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