checkBoxLayout method
Implementation
Widget checkBoxLayout() {
final Widget leading = reverse ? _text() : _checkbox();
final Widget trailing = reverse ? _checkbox() : _text();
return Row(
mainAxisAlignment: alignment,
children: [leading, trailing],
);
}