of static method

Get closest FeatherIconTheme above in the Widget tree.

Implementation

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