Return empty platform info for desktop builds

This commit is contained in:
Sarah Jamie Lewis 2023-09-11 13:40:44 -07:00
parent 7f8150c8b7
commit 11fb137f6c
1 changed files with 1 additions and 1 deletions

View File

@ -1059,6 +1059,6 @@ class CwtchFfi implements Cwtch {
@override
Future<HashMap<String, String>> PlatformChannelInfo() {
throw HashMap<String, String>();
return Future.value(HashMap<String, String>());
}
}