getUserByExternalId function
- @Deprecated('The field `externalId` of the `CubeUser` model is deprecated. ' 'Use the `getUserByExternalUserId(String externalUserId)` function for requesting the user by `externalUserId`')
Future<CubeUser?>
getUserByExternalId(
- int externalId
)
Implementation
@Deprecated('The field `externalId` of the `CubeUser` model is deprecated. '
'Use the `getUserByExternalUserId(String externalUserId)` function for requesting the user by `externalUserId`')
Future<CubeUser?> getUserByExternalId(int externalId) {
return GetUserQuery.byExternal(externalId).perform();
}