basis method

T basis(
  1. String value
)

Set flex basis - accepts String ('s32', 's40', 's48', etc.) This method can be chained with other flex methods, with later calls overriding earlier ones

Implementation

T basis(String value) {
  return copyWith(flyStyle.copyWith(basis: value));
}