authSet function
Update auth data for a session.
update receives current data and returns updated data.
session specifies which auth session to update.
Implementation
Future<void> authSet(
dynamic Function(dynamic data) update, {
String? session,
}) async {
await Auth.set(update, session: session);
}