InheritedChatTheme constructor

const InheritedChatTheme({
  1. Key? key,
  2. required ChatTheme theme,
  3. required Widget child,
})

Creates InheritedWidget from a provided ChatTheme class.

Implementation

const InheritedChatTheme({
  super.key,
  required this.theme,
  required super.child,
});