authorize abstract method

Future<void> authorize(
  1. {String? tokenResponseString}
)

Initiates the authorization process.

Parameters:

  • tokenResponse: Saved token response from the storage provider. If the value is null, the method will prompt the login screen. If not, it will use this value to create credential

Implementation

Future<void> authorize({
  String? tokenResponseString,
});