authenticateCustom method
Implementation
@override
Future<model.Session> authenticateCustom({
required String id,
bool create = true,
String? username,
Map<String, String>? vars,
}) async {
final res = await _api.nakamaAuthenticateCustom(
body: ApiAccountCustom(id: id, vars: vars),
create: create,
username: username,
);
if (res.body == null) {
throw Exception('Authentication failed.');
}
final data = res.body!;
return model.Session(
created: data.created ?? false,
token: data.token!,
refreshToken: data.refreshToken,
);
}