ResponsiveRowScope constructor

const ResponsiveRowScope({
  1. Key? key,
  2. int totalColumns = SFColumnSystem.defaultTotalColumns,
  3. bool wrap = true,
  4. double spacing = SFBreakpoints.defaultGap,
  5. required Widget child,
})

Implementation

const ResponsiveRowScope({
  super.key,
  this.totalColumns = SFColumnSystem.defaultTotalColumns,
  this.wrap = true,
  this.spacing = SFBreakpoints.defaultGap,
  required super.child,
});