of static method

The data from the closest SelectPickerTheme instance that encloses the given context.

Returns null if no SelectPickerTheme encloses the given context.

Implementation

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