shrink method

T shrink(
  1. int value
)

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

Implementation

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