of static method

Use this method to get the current StreamChatThemeData instance

Implementation

static StreamChatThemeData of(BuildContext context) {
  final streamChatTheme =
      context.dependOnInheritedWidgetOfExactType<StreamChatTheme>();

  assert(
    streamChatTheme != null,
    'You must have a StreamChatTheme widget at the top of your widget tree',
  );

  return streamChatTheme!.data;
}