Gap constructor

const Gap({
  1. Unit? row,
  2. Unit? column,
})

Creates a gap with optional rowGap and columnGap sizes.

Implementation

const Gap({Unit? row, Unit? column}) : rowGap = row, columnGap = column;