Row constructor

Row({
  1. List<DslWidget>? children,
  2. MainAxis mainAxis = MainAxis.start,
  3. CrossAxis crossAxis = CrossAxis.center,
  4. double? spacing,
  5. Object? padding,
  6. bool scrollable = false,
  7. String? name,
  8. Object? visible,
})

Implementation

Row({
  List<DslWidget>? children,
  this.mainAxis = MainAxis.start,
  this.crossAxis = CrossAxis.center,
  this.spacing,
  this.padding,
  this.scrollable = false,
  String? name,
  Object? visible,
}) : children = List.unmodifiable(children ?? const <DslWidget>[]),
     super(name: name, visible: _normalizeVisibility(visible));