of static method

CheckboxStyle? of(
  1. BuildContext context
)

Implementation

static CheckboxStyle? of(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<CheckboxTheme>()?.style;
}