Space.only constructor

const Space.only({
  1. double? x,
  2. double? y,
  3. Key? key,
})

Implementation

const Space.only({
  this.x,
  this.y,
  Key? key,
}) : super(key: key);