From 8bcb3a71edd7571ad74bebe16c5203d66266c299 Mon Sep 17 00:00:00 2001 From: toki Date: Sat, 28 Jan 2023 01:01:21 +0900 Subject: [PATCH] no message --- lib/utils/system_util.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/utils/system_util.dart b/lib/utils/system_util.dart index aabfef2..3c7a380 100644 --- a/lib/utils/system_util.dart +++ b/lib/utils/system_util.dart @@ -67,3 +67,9 @@ Future getIPAddress(String domain) async { c.complete(ipAddress); return c.future; } + +Future get simpleFuture { + var c = Completer(); + c.complete(); + return c.future; +}