DoneWidget constructor

const DoneWidget({
  1. Key? key,
  2. double strokeWidth = 2.0,
  3. Color color = Colors.green,
  4. bool outline = false,
})

Implementation

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