getConnectionStatus static method
Implementation
static Future<String> getConnectionStatus() async {
try {
final result = await channel.invokeMethod('getConnectionStatus', {});
return result;
} catch (e) {
throw e;
}
}
static Future<String> getConnectionStatus() async {
try {
final result = await channel.invokeMethod('getConnectionStatus', {});
return result;
} catch (e) {
throw e;
}
}