ResponsiveColumnConfig constructor
const
ResponsiveColumnConfig({
- ResponsiveColumnType? type,
- int? span,
- int? offset,
- int? order,
- ResponsiveCrossAlignment? crossAxisAlignment,
Creates a definition for the display of a ResponsiveColumn
Implementation
const ResponsiveColumnConfig({
final ResponsiveColumnType? type,
this.span,
this.offset,
this.order,
this.crossAxisAlignment,
}) : this.type = type ?? (span == null ? null : ResponsiveColumnType.span);