super_ip 0.1.0
super_ip: ^0.1.0 copied to clipboard
A modern Dart package for working with the IP protocol stack (IPv4, IPv6, ICMP, TCP, UDP), updated for Dart 3.8 with improved type safety and null-safety support.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add super_ipWith Flutter:
$ flutter pub add super_ipThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
super_ip: ^0.1.0Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:super_ip/foundation.dart';
import 'package:super_ip/icmp.dart';
import 'package:super_ip/ip.dart';
import 'package:super_ip/tcp.dart';
import 'package:super_ip/udp.dart';