of static method

Implementation

static FocusThemeData of(BuildContext context) {
  assert(debugCheckHasFluentTheme(context));
  final theme = context.dependOnInheritedWidgetOfExactType<FocusTheme>();
  return FluentTheme.of(context).focusTheme.merge(theme?.data);
}