flex property

int get flex

Implementation

int get flex {
  _add((w) => Flexible(child: w));

  return 1;
}
set flex (int v)

Implementation

set flex(int v) => _add((w) => Flexible(flex: v, child: w));