HandSignatureView constructor

const HandSignatureView({
  1. Key? key,
  2. required dynamic data,
  3. Color? color,
  4. double strokeWidth(
    1. double width
    )?,
  5. EdgeInsets? padding,
  6. Widget? placeholder,
})

Draws Path based on Drawable data.

Implementation

const HandSignatureView({
  Key? key,
  required this.data,
  this.color,
  this.strokeWidth,
  this.padding,
  this.placeholder,
}) : super(key: key);