xl property
double
get
xl
Gets the responsive XL (Extra Large) size based on the current screen type. Defaults to GridConstants.mobileXL if the screen type is not set.
Implementation
double get xl {
return switch (screenType) {
ScreenType.mobile => GridConstants.mobileXL,
ScreenType.tablet => GridConstants.tabletXL,
ScreenType.desktop => GridConstants.desktopXL,
null => GridConstants.mobileXL,
};
}