BaseIcon constructor

const BaseIcon(
  1. String icon, {
  2. Key? key,
  3. Color? color,
  4. double fontSize = 16,
  5. bool isPrimary = false,
  6. bool isSolid = false,
})

Implementation

const BaseIcon(
  this.icon, {
  super.key,
  this.color,
  this.fontSize = 16,
  this.isPrimary = false,
  this.isSolid = false,
});