FUI constructor

const FUI(
  1. String file, {
  2. Key? key,
  3. double width = 30,
  4. double height = 30,
  5. Color? color,
})

Icons Types:

  • BoldRounded
  • BoldStraight
  • RegularRounded
  • RegularStraight
  • SolidRounded
  • SolidStraight

Example:

FUI(BoldRounded.ADD)

Implementation

const FUI(this.file,
    {super.key, this.width = 30, this.height = 30, this.color});