currentTheme static method
Implementation
static NeumorphicThemeData currentTheme(BuildContext context) {
final provider = NeumorphicTheme.of(context);
if (provider == null) return neumorphicDefaultTheme;
return provider.current == null
? neumorphicDefaultTheme
: provider.current!;
}