updateTheme method
Update theme
Implementation
@override
Future<void> updateTheme(BabylAITheme theme) async {
await methodChannel.invokeMethod<void>('updateTheme', {
'theme': theme == BabylAITheme.dark ? 'dark' : 'light',
});
}
Update theme
@override
Future<void> updateTheme(BabylAITheme theme) async {
await methodChannel.invokeMethod<void>('updateTheme', {
'theme': theme == BabylAITheme.dark ? 'dark' : 'light',
});
}