RowMix constructor

RowMix(
  1. Mix mix, {
  2. Key? key,
  3. List<Widget> children = const <Widget>[],
})

Implementation

RowMix(
  Mix mix, {
  Key? key,
  List<Widget> children = const <Widget>[],
}) : super(
        mix,
        key: key,
        children: children,
        direction: Axis.horizontal,
      );