setTheme static method
Sets SDK theme.
Returns true if theme was set and false otherwise
Implementation
static Future<bool> setTheme({
KevinThemeAndroid? androidTheme,
KevinThemeIos? iosTheme,
}) {
return KevinFlutterCorePlatformInterface.instance.setTheme(
androidTheme: androidTheme,
iosTheme: iosTheme,
);
}