v3.1.3
flutter_icmp_ping
नेटवर्क होस्ट को ICMP ECHO_REQUEST भेजने वाला Flutter प्लगइन।
15लाइक 29.9 हज़ार30-दिन डाउनलोड150Pub अंक
AndroidiOS
ICMP ECHO_REQUEST भेजने वाला Flutter प्लगइन
^2.11.0{"sdk":"flutter"}{"sdk":"flutter"}^2.0.3यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
Flutter plugin that sends ICMP ECHO_REQUEST.
To use this plugin, add flutter_icmp_ping as a dependency in your pubspec.yaml file.
dependencies:
flutter_icmp_ping:
Import the library in your file.
import 'package:flutter_icmp_ping/flutter_icmp_ping.dart';
See the example directory for a complete sample app using Ping.
Or use the Ping like below.
try {
final ping = Ping(
'google.com',
count: 3,
timeout: 1,
interval: 1,
ipv6: false,
ttl: 40,
);
ping.stream.listen((event) {
print(event);
});
} catch (e) {
print('error $e');
}