MaterialBannerThemeModifier constructor

const MaterialBannerThemeModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. Widget? child,
  4. MaterialBannerThemeData? data,
})

Creates a banner theme that controls the configurations for MaterialBanners in its widget subtree.

Implementation

const MaterialBannerThemeModifier({
  super.key,
  super.modifierKey,
  super.child,
  this.data,
});