FUI constructor

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

Implementation

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