From 4561e05ab98b0117cee5a6aea0102a90856dda98 Mon Sep 17 00:00:00 2001 From: Felipe Bastos Date: Fri, 29 May 2026 23:05:25 -0300 Subject: [PATCH] Remove tokenExpiry getter and add clearCredentials method to GoogleVision class --- packages/google_vision_flutter/lib/src/google_vision.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/google_vision_flutter/lib/src/google_vision.dart b/packages/google_vision_flutter/lib/src/google_vision.dart index 0979bb5..ef932c0 100644 --- a/packages/google_vision_flutter/lib/src/google_vision.dart +++ b/packages/google_vision_flutter/lib/src/google_vision.dart @@ -26,9 +26,6 @@ class GoogleVision with UiLoggy implements gv.GoogleVision { @override set apiKey(String apiKey) => _googleVision.apiKey = apiKey; - @override - get tokenExpiry => _googleVision.tokenExpiry; - // Private constructor GoogleVision._internal(); @@ -95,4 +92,7 @@ class GoogleVision with UiLoggy implements gv.GoogleVision { @override Loggy get loggy => _googleVision.loggy; + + @override + void clearCredentials() => _googleVision.clearCredentials(); }