LineSignatureDrawer constructor

const LineSignatureDrawer({
  1. double width = 1.0,
  2. Color color = Colors.black,
})

Creates a LineSignatureDrawer with the specified width and color.

Implementation

const LineSignatureDrawer({
  this.width = 1.0,
  this.color = Colors.black,
});