Gap constructor

Gap({
  1. Key? key,
  2. String title = "",
  3. int value = 1,
  4. PumaOrientation orientation = PumaOrientation.horizontal,
  5. double? width,
  6. double? height,
  7. Color? backgroundColor,
})

Implementation

Gap({
  Key? key,
  this.title = "",
  this.value = 1,
  this.orientation = PumaOrientation.horizontal,
  this.width,
  this.height,
  this.backgroundColor,
}) : super(key: key);