deleteSocialConnection method

Future<void>? deleteSocialConnection(
  1. SocialConnection socialConnectionType
)

Deletes a social connection for the authenticated user.

Parameters:

  • socialConnectionType: The type of social connection to delete.

Returns: A Future<void> that resolves when the social connection is deleted.

Throws: PassageError if an error occurs during the deletion process.

Implementation

Future<void>? deleteSocialConnection(SocialConnection socialConnectionType) {
  return PassageFlutterPlatform.instance.deleteSocialConnection(socialConnectionType);
}