Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated Feb 21, 2024

Identify user

Amplify Flutter v0 is now in Maintenance Mode until July 19th, 2024. This means that we will continue to include updates to ensure compatibility with backend services and security. No new features will be introduced in v0.

Please use the latest version (v1) of Amplify Flutter to get started.

If you are currently using v0, follow these instructions to upgrade to v1.

This call sends information that you have specified about a user to Amazon Pinpoint. This could be for an unauthenticated (guest) or an authenticated user.

You can get the current user's ID from the Amplify Auth category as shown per the Auth category documentation. Be sure to have it ready before you set it as shown below (Check out the Authentication Getting Started guide for detailed explanation).

If you have asked for location access and received permission, you can also provide that in AnalyticsUserProfileLocation.

Future<void> addAnalyticsWithLocation({
required String userId,
required String name,
required String email,
required String phoneNumber,
required int age,
}) async {
final location = AnalyticsUserProfileLocation()
..latitude = 47.606209
..longitude = -122.332069
..postalCode = '98122'
..city = 'Seattle'
..region = 'WA'
..country = 'USA';
final properties = AnalyticsProperties()
..addStringProperty('phoneNumber', phoneNumber)
..addIntProperty('age', age);
final userProfile = AnalyticsUserProfile()
..name = name
..email = email
..location = location
..properties = properties;
await Amplify.Analytics.identifyUser(
userId: userId,
userProfile: userProfile,
);
}