From 46b22cf4eb444d94f55880e7a6fbb1e315c9a975 Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Thu, 29 Feb 2024 14:23:04 +0100 Subject: [PATCH] format --- lib/src/posthog_flutter_io.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/src/posthog_flutter_io.dart b/lib/src/posthog_flutter_io.dart index a881e8e..5c83223 100644 --- a/lib/src/posthog_flutter_io.dart +++ b/lib/src/posthog_flutter_io.dart @@ -196,8 +196,7 @@ class PosthogFlutterIO extends PosthogFlutterPlatformInterface { @override Future unregister(String key) async { try { - return await _methodChannel - .invokeMethod('unregister', {'key': key}); + return await _methodChannel.invokeMethod('unregister', {'key': key}); } on PlatformException catch (exception) { _printIfDebug('Exeption on unregister: $exception'); }