connectToGoogleDrive function

Future<GoogleDriveProvider?> connectToGoogleDrive({
  1. bool forceInteractive = false,
  2. List<String>? scopes,
  3. String? serverClientId,
  4. String? clientSecret,
  5. int redirectPort = 8000,
})

Implementation

Future<GoogleDriveProvider?> connectToGoogleDrive(
    {bool forceInteractive = false,
      List<String>? scopes,
      String? serverClientId,
      String? clientSecret,
      int redirectPort = 8000}) =>
    GoogleDriveProvider.connect(
        forceInteractive: forceInteractive,
        scopes: scopes,
        serverClientId: serverClientId,
        clientSecret: clientSecret,
        redirectPort: redirectPort);