LindiController constructor

LindiController({
  1. Color borderColor = Colors.blue,
  2. Color iconColor = Colors.white,
  3. bool showDone = true,
  4. bool showClose = true,
  5. bool showFlip = true,
  6. bool showStack = true,
  7. bool showLock = true,
  8. bool showAllBorders = true,
  9. bool shouldMove = true,
  10. bool shouldRotate = true,
  11. bool shouldScale = true,
  12. double minScale = 0.5,
  13. double maxScale = 4,
})

Constructor to initialize properties with default values.

Implementation

LindiController(
    {this.borderColor = Colors.blue,
    this.iconColor = Colors.white,
    this.showDone = true,
    this.showClose = true,
    this.showFlip = true,
    this.showStack = true,
    this.showLock = true,
    this.showAllBorders = true,
    this.shouldMove = true,
    this.shouldRotate = true,
    this.shouldScale = true,
    this.minScale = 0.5,
    this.maxScale = 4});