From ae071af5b62c7d1b17afd7ee88251256eabda477 Mon Sep 17 00:00:00 2001 From: Jami Couch Date: Tue, 10 May 2022 20:20:03 -0500 Subject: [PATCH] [force-code-for-refresh-token-platform-interface] Adjust comments per PR feedback --- .../lib/google_sign_in_platform_interface.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/google_sign_in/google_sign_in_platform_interface/lib/google_sign_in_platform_interface.dart b/packages/google_sign_in/google_sign_in_platform_interface/lib/google_sign_in_platform_interface.dart index dd8baa0eed9f..3a18d099a1c6 100644 --- a/packages/google_sign_in/google_sign_in_platform_interface/lib/google_sign_in_platform_interface.dart +++ b/packages/google_sign_in/google_sign_in_platform_interface/lib/google_sign_in_platform_interface.dart @@ -63,8 +63,7 @@ abstract class GoogleSignInPlatform { /// if the provided instance is a class implemented with `implements`. void _verifyProvidesDefaultImplementations() {} - /// Initializes the plugin. You must call this method before calling other - /// methods. + /// Initializes the plugin. Deprecated: call [initWithParams] instead. /// /// The [hostedDomain] argument specifies a hosted domain restriction. By /// setting this, sign in will be restricted to accounts of the user in the @@ -89,8 +88,8 @@ abstract class GoogleSignInPlatform { throw UnimplementedError('init() has not been implemented.'); } - /// Initializes the plugin. You must call this method before calling other - /// methods. + /// Initializes the plugin with [params]. You must call this method before + /// calling other methods. /// /// The [params] argument specifies the parameters that will be used to /// initialize the plugin.