deleteSession abstract method

Future<void> deleteSession({
  1. SessionId? id,
  2. UserPassword? password,
  3. DeviceToken? token,
  4. AccessTokenSecret? accessToken,
})

Invalidates a Session with the provided id of the MyUser identified by the accessToken, if any, or otherwise Session of the MyUser identified by the token.

Unregisters a device (Android, iOS, or Web) from receiving notifications via Firebase Cloud Messaging, if token is provided.

Implementation

Future<void> deleteSession({
  SessionId? id,
  UserPassword? password,
  DeviceToken? token,
  AccessTokenSecret? accessToken,
});