ArcSignatureDrawer constructor

const ArcSignatureDrawer({
  1. double width = 1.0,
  2. double maxWidth = 10.0,
  3. Color color = Colors.black,
})

Creates an ArcSignatureDrawer with the specified width, maxWidth, and color.

Implementation

const ArcSignatureDrawer({
  this.width = 1.0,
  this.maxWidth = 10.0,
  this.color = Colors.black,
});