adaptiveBody2TextStyle property

TextStyle adaptiveBody2TextStyle

Implementation

TextStyle get adaptiveBody2TextStyle {
  if (theme.windowSize.shortestSide > 480) {
    return body2Medium;
  } else {
    return body2Small;
  }
}