ResponsiveValue<T> constructor
const
ResponsiveValue<T> ({
- T? extraSmall,
- T? small,
- T? medium,
- T? large,
- required T defaultValue,
Creates a ResponsiveValue.
Implementation
const ResponsiveValue({
this.extraSmall,
this.small,
this.medium,
this.large,
required this.defaultValue,
});