IconConfiguration constructor

const IconConfiguration({
  1. Key? key,
  2. EdgeInsets margin = const EdgeInsets.all(0.0),
  3. double? size,
  4. IconData icon = Icons.done,
  5. Color? color,
  6. String? semanticLabel,
  7. TextDirection? textDirection,
})

Implementation

const IconConfiguration({
  this.key,
  this.margin = const EdgeInsets.all(0.0),
  this.size,
  this.icon = Icons.done,
  this.color,
  this.semanticLabel,
  this.textDirection,
});