set static method

Future<void> set(
  1. dynamic auth, {
  2. String? key,
})

Set the auth user

Implementation

static Future<void> set(dynamic auth, {String? key}) async =>
    await nyEvent<AuthUserEvent>(params: {"auth": auth, "key": key});