icon function

Icon icon(
  1. IconData type, {
  2. double size = 18.0,
  3. String color = "#010101",
})

Implementation

Icon icon(IconData type, {double size = 18.0,String color = "#010101"}) {
  return Icon(
    type,
    size: size.toDouble(),
    color: HexToColor(color),
  );
}