size property

int? get size

The size of the returned icon. The icon will be square with dimensions size * size pixels. The default and largest size for the icon is 32x32 pixels. The only supported sizes are 16 and 32. It is an error to specify any other size.

Implementation

int? get size => _wrapped.size;
set size (int? v)

Implementation

set size(int? v) {
  _wrapped.size = v;
}