getLocalIPAddress static method
Implementation
static Future<String?> getLocalIPAddress() async {
try {
final String? result = await _channel.invokeMethod('getLocalIPAddress');
return result;
} on PlatformException {
return null;
}
}