of static method

Implementation

static NeumorphismThemeInherited? of(BuildContext context) {
  try {
    return context
        .dependOnInheritedWidgetOfExactType<NeumorphismThemeInherited>();
  } catch (t) {
    return null;
  }
}