createOfflineGroupInOnline method
Implementation
@override
Future<bool?> createOfflineGroupInOnline(String groupId) async {
bool? res;
try {
res = await mirrorFlyMethodChannel.invokeMethod<bool>(
'createOfflineGroupInOnline', {"groupId": groupId});
return res;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}