NiceSignature constructor

const NiceSignature({
  1. Key? key,
  2. ValueChanged<List<List<Offset>>>? onChanged,
  3. double height = 200,
  4. Color penColor = Colors.black,
  5. double penWidth = 2.0,
  6. Color backgroundColor = Colors.white,
  7. String? label,
})

Implementation

const NiceSignature({
  super.key,
  this.onChanged,
  this.height = 200,
  this.penColor = Colors.black,
  this.penWidth = 2.0,
  this.backgroundColor = Colors.white,
  this.label,
});