gap method

List<Widget> gap(
  1. double gap
)

Space out a list of wigets with gap of fixed width

Implementation

List<Widget> gap(double gap) {
  return divide(
    SizedBox.square(
      dimension: gap,
    ),
  ).toList();
}