EasyRow constructor

const EasyRow(
  1. {Key? key,
  2. required List<EasyCol> children,
  3. double? gutter}
)

Implementation

const EasyRow({
  Key? key,
  required this.children,
  this.gutter,
}) : super(key: key);