getBackgroundConnections static method
Implementation
static Future<List<String>> getBackgroundConnections() async {
if (!Platform.isIOS) {
return [];
}
final result = await _channel.invokeMethod('getBackgroundConnections');
ExceptionHandler.checkException(result);
final convertedResult = result as List<String>;
return convertedResult;
}