BuildSettings constructor

const BuildSettings({
  1. bool withOpacity = true,
  2. bool withVisibility = true,
  3. bool withRotation = true,
  4. bool withMargins = true,
  5. bool withConstraints = true,
  6. bool withReactions = true,
  7. bool withAlignment = true,
  8. bool isPreview = false,
  9. bool useInk = true,
  10. bool obscureImages = false,
})

Creates a BuildSettings instance.

Implementation

const BuildSettings({
  this.withOpacity = true,
  this.withVisibility = true,
  this.withRotation = true,
  this.withMargins = true,
  this.withConstraints = true,
  this.withReactions = true,
  this.withAlignment = true,
  this.isPreview = false,
  this.useInk = true,
  this.obscureImages = false,
});