IconedButton constructor

const IconedButton({
  1. String? text,
  2. Icon? icon,
  3. required Color color,
})

Implementation

const IconedButton({
  this.text,
  this.icon,
  required this.color,
});