grow method

T grow(
  1. int value
)

Set flex grow - accepts int (0-2) This method can be chained with other flex methods, with later calls overriding earlier ones

Implementation

T grow(int value) {
  return copyWith(flyStyle.copyWith(grow: value));
}