createSessionCookie method
Creates a new Firebase session cookie with the specified options. The created JWT string can be set as a server-side session cookie with a custom cookie policy, and be used for session management. The session cookie JWT will have the same payload claims as the provided ID token.
See https://firebase.google.com/docs/auth/admin/manage-cookies for code samples and detailed documentation.
Implementation
Future<String> createSessionCookie(
String idToken, {
required int expiresIn,
}) async {
return _authRequestHandler.createSessionCookie(
idToken,
expiresIn: expiresIn,
);
}