When I run my Flutter app on my Android phone and print the IP, sometimes it's showing an IP from my home network (192.168.x.x) but other times it's showing a different network (10.x.x.x). How to make it consistently use my home network?
Using the https://pub.dev/packages/wifi package:
Future<Null> _discoverPrintersWifi() async {
final String ip = await Wifi.ip;
print(ip);
}