getTokenInAllGroups method

Future<List<TokenWithGroup>> getTokenInAllGroups(
  1. String userIdentifier,
  2. String key, {
  3. String? token,
  4. int? tokenValidity,
})

Implementation

Future<List<TokenWithGroup>> getTokenInAllGroups(String userIdentifier, String key, { String? token, int? tokenValidity }) async {
	return await CardinalSdkPlatformInterface.instance.apis.user.getTokenInAllGroups(
		_sdkId,
		userIdentifier,
		key,
		token,
		tokenValidity,
	);
}