public Icon(IconData icon, Key key = null, float?size = null, Color color = null ) : base(key: key) { this.icon = icon; this.size = size; this.color = color; }
public Icon( IconData icon, Key key = null, float?size = null, Color color = null, TextDirection?textDirection = null ) : base(key: key) { this.icon = icon; this.size = size; this.color = color; this.textDirection = textDirection; }