Gap constructor

const Gap([
  1. double width = 16,
  2. double height = 16,
  3. Key? key
])

Creates a Gap widget with specified horizontal and vertical space.

Implementation

const Gap([this.width = 16, this.height = 16, Key? key]) : super(key: key);