v3.1.3
flutter_icmp_ping
一個向網路主機發送 ICMP ECHO_REQUEST 的 Flutter 插件。
15喜歡 3萬近 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');
}