responsiveValue<T> method
T
responsiveValue<T>({
- T? xs,
- T? sm,
- T? md,
- T? lg,
- T? xl,
- T? xxl,
- required T fallback,
Get responsive value directly from context
Implementation
T responsiveValue<T>({
T? xs,
T? sm,
T? md,
T? lg,
T? xl,
T? xxl,
required T fallback,
}) {
return responsive.value(
xs: xs,
sm: sm,
md: md,
lg: lg,
xl: xl,
xxl: xxl,
fallback: fallback,
);
}