Spacing constructor

const Spacing({
  1. Key? key,
  2. double horizontal = 0,
  3. double vertical = 0,
})

Implementation

const Spacing({
  Key? key,
  this.horizontal = 0,
  this.vertical = 0,
}) : super(key: key);