of static method

Implementation

static AppKitProgressThemeData of(BuildContext context) {
  final AppKitProgressTheme? theme =
      context.dependOnInheritedWidgetOfExactType<AppKitProgressTheme>();
  return theme?.data ?? AppKitTheme.of(context).progressTheme;
}