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