PlexBackground constructor

const PlexBackground({
  1. Key? key,
  2. PlexBackgroundType type = PlexBackgroundType.neoGlass,
  3. required Widget child,
})

Implementation

const PlexBackground({
  super.key,
  this.type = PlexBackgroundType.neoGlass,
  required this.child,
});