CheckmarkThemeData constructor

const CheckmarkThemeData({
  1. Curve curve = Curves.linear,
  2. Duration duration = const Duration(milliseconds: 200),
  3. Color color = Colors.black,
  4. double? weight,
  5. double? size,
  6. bool autoSize = true,
  7. bool rounded = false,
  8. bool drawCross = false,
  9. bool drawDash = true,
})

Creates a theme data that can be used for CheckmarkThemeData.

Implementation

const CheckmarkThemeData({
  this.curve = Curves.linear,
  this.duration = const Duration(milliseconds: 200),
  this.color = Colors.black,
  this.weight,
  this.size,
  this.autoSize = true,
  this.rounded = false,
  this.drawCross = false,
  this.drawDash = true,
});