Signature constructor

const Signature({
  1. required SignatureController controller,
  2. Key? key,
  3. Color backgroundColor = Colors.grey,
  4. double? width,
  5. double? height,
})

constructor

Implementation

const Signature({
  required this.controller,
  Key? key,
  this.backgroundColor = Colors.grey,
  this.width,
  this.height,
}) : super(key: key);