xxl property

double get xxl

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

Implementation

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