l property
double
get
l
Gets the responsive L (Large) size based on the current screen type. Defaults to mobileL if the screen type is not set.
Implementation
double get l {
return switch (_currentScreenType) {
ScreenType.mobile => mobileL,
ScreenType.tablet => tabletL,
ScreenType.desktop => desktopL,
null => mobileL,
};
}