launchActiveChat method
Launch active chat directly
Implementation
@override
Future<void> launchActiveChat({
required String screenId,
required BabylAITheme theme,
}) async {
await methodChannel.invokeMethod<void>('launchActiveChat', {
'screenId': screenId,
'theme': theme == BabylAITheme.dark ? 'dark' : 'light',
});
}