ipAddress property

Future<String> ipAddress

Returns the IPv4-Address the device is aware of (depending on your network configuration) Can be null

Implementation

static Future<String> get ipAddress async {
  final String ip = await channel.invokeMethod(describeEnum(METHODS.IP_ADDRESS));
  return ip;
}