intranet_ip 1.0.1 copy "intranet_ip: ^1.0.1" to clipboard
intranet_ip: ^1.0.1 copied to clipboard

get local intranet ip with tcp bind

intranet_ip #

get local intranet ip with tcp bind

use #

import 'package:intranet_ip/intranet_ip.dart';

void main() async {
  final ip = await localIpv4();
  print(ip);
  print(ip.rawAddress);
}