InfoBarTheme constructor

const InfoBarTheme({
  1. Key? key,
  2. required InfoBarThemeData data,
  3. required Widget child,
})

Creates a info bar theme that controls the configurations for InfoBar.

Implementation

const InfoBarTheme({
  super.key,
  required this.data,
  required super.child,
});