size property

int get size

A number representing the width and height of the icon. Likely values include (but are not limited to) 128, 48, 24, and 16.

Implementation

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

Implementation

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