TxDone constructor

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

Implementation

const TxDone({
  super.key,
  this.strokeWidth = 2.0,
  this.color = Colors.green,
  this.outline = false,
});