Signature constructor

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

constructor

Implementation

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