SideBySide constructor
SideBySide({})
Implementation
SideBySide({
Key? key,
required this.startChild,
required this.endChild,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.innerDistance = 0,
this.minEndChildWidth = 0,
}) : super(
key: key,
children: [startChild, endChild],
);