of static method

Implementation

static LoadingThemeData of(BuildContext context) {
  final LoadingTheme? result =
      context.dependOnInheritedWidgetOfExactType<LoadingTheme>();
  return result?.data ?? LoadingThemeData();
}