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({
  Key? key,
  required this.data,
  required Widget child,
}) : super(key: key, child: child);