of static method

SparkTheme? of(
  1. BuildContext context
)

get form theme data of context

Implementation

static SparkTheme? of(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<SparkThemeData>()?.theme;
}