syncTheme method
Implementation
@override
Future<void> syncTheme(ReownAppKitModalTheme? theme) async {
_appTheme = theme;
if (_serviceNotReady || _appTheme == null) return;
//
final message = SyncTheme(theme: _appTheme).toString();
await _webViewController.runJavaScript('sendMessage($message)');
}