Icon constructor

Icon({
  1. String? icon,
  2. String? size,
  3. String? fill,
})

Implementation

Icon({
  String? icon,
  String? size,
  String? fill,
}) {
  _icon = icon;
  _size = size;
  _fill = fill;
}