ResponsiveColumnConfig constructor

const ResponsiveColumnConfig({
  1. ResponsiveColumnType? type,
  2. int? span,
  3. int? offset,
  4. int? order,
  5. 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);