flex method

T flex(
  1. dynamic value
)

Set flex value - accepts int (1-12) or String ('auto', 'initial', 'none') This method can be chained with other flex methods, with later calls overriding earlier ones

Implementation

T flex(dynamic value) {
  return copyWith(flyStyle.copyWith(flex: value));
}