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;
 }
Example #2
0
 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;
 }