m property

double get m

Gets the responsive M (Medium) size based on the current screen type. Defaults to mobileM if the screen type is not set.

Implementation

double get m {
  return switch (_currentScreenType) {
    ScreenType.mobile => mobileM,
    ScreenType.tablet => tabletM,
    ScreenType.desktop => desktopM,
    null => mobileM,
  };
}