separateByWidth method

List<Widget> separateByWidth(
  1. num width
)

returns a List with original items separated by a SizedBox of width

Implementation

List<Widget> separateByWidth(num width) {
  return separateBy(SizedBox(width: width.toDouble()));
}