of static method

Implementation

static OrkittCircularProgressIndicatorThemeData? of(BuildContext context) {
  final t = context.dependOnInheritedWidgetOfExactType<
      OrkittCircularProgressIndicatorTheme>();
  return t?.data ??
      Theme.of(context).extension<OrkittCircularProgressIndicatorThemeData>();
}