DoneWidget constructor

const DoneWidget({
  1. Key? key,
  2. double strokeWidth = 2.0,
  3. Color color = Colors.green,
  4. Color normalBorderColor = Colors.green,
  5. bool outline = false,
  6. bool value = false,
  7. ValueChanged<bool>? onChanged,
})

Implementation

const DoneWidget({
  Key? key,
  this.strokeWidth = 2.0,
  this.color = Colors.green,
  this.normalBorderColor = Colors.green,
  this.outline = false,
  this.value = false,
  this.onChanged,
}) : super(key: key);