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