VisualEffectSubviewProperties constructor

VisualEffectSubviewProperties({
  1. double? frameWidth,
  2. double? frameHeight,
  3. double? frameX,
  4. double? frameY,
  5. double? alphaValue,
  6. double? cornerRadius,
  7. int? cornerMask,
  8. NSVisualEffectViewMaterial? material,
  9. NSVisualEffectViewState? state,
})

Visual effect subview properties.

All values may be set to null if they should not be overwritten.

Implementation

VisualEffectSubviewProperties(
    {this.frameWidth,
    this.frameHeight,
    this.frameX,
    this.frameY,
    this.alphaValue,
    this.cornerRadius,
    this.cornerMask,
    this.material,
    this.state});