of static method

FitTheme of(
  1. BuildContext context
)

Gets the closest FitTheme in the Widget Tree.

Implementation

static FitTheme of(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<FitTheme>()!;
}