xxl property

double get xxl

Gets the responsive XXL (Extra Extra Large) size based on the current screen type. Defaults to mobileXXL if the screen type is not set.

Implementation

double get xxl {
  return switch (_currentScreenType) {
    ScreenType.mobile => mobileXXL,
    ScreenType.tablet => tabletXXL,
    ScreenType.desktop => desktopXXL,
    null => mobileXXL,
  };
}