DefaultIcons constructor

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

Implementation

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