From e02e2e2f610b59c2a21b88648175c99ca37de2a9 Mon Sep 17 00:00:00 2001 From: Shengqi Chen Date: Sun, 22 Dec 2024 01:01:15 +0800 Subject: [PATCH] Run dart format Signed-off-by: Shengqi Chen --- lib/flutter_nfc_kit.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/flutter_nfc_kit.dart b/lib/flutter_nfc_kit.dart index fc1254b..c051837 100644 --- a/lib/flutter_nfc_kit.dart +++ b/lib/flutter_nfc_kit.dart @@ -281,7 +281,7 @@ class FlutterNfcKit { EventChannel('flutter_nfc_kit/event'); /// Stream of NFC tag events. Each event is a [NFCTag] object. - /// + /// /// This is only supported on Android. /// On other platforms, this stream will always be empty. static Stream get tagStream { @@ -353,9 +353,9 @@ class FlutterNfcKit { } /// Works only on iOS. - /// - /// Calls `NFCTagReaderSession.restartPolling()`. - /// Call this if you have received "Tag connection lost" exception. + /// + /// Calls `NFCTagReaderSession.restartPolling()`. + /// Call this if you have received "Tag connection lost" exception. /// This will allow to reconnect to tag without closing system popup. static Future iosRestartPolling() async => await _channel.invokeMethod("restartPolling");