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');
}