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](/lib/auth/getting-started) guide for detailed explanation). If you have asked for location access and received permission, you can also provide that in `UserProfileLocation` Breaking changes from v0 to v1: The Analytics- prefix of the original `AnalyticsUserProfile` and `AnalyticsUserProfileLocation` classes is removed. Furthermore, `AnalyticsProperties` is renamed to `CustomProperties`. ```dart Future addAnalyticsWithLocation({ required String userId, required String name, required String email, required String phoneNumber, required int age, }) async { final userProfile = UserProfile( name: name, email: email, location: const UserProfileLocation( latitude: 47.606209, longitude: -122.332069, postalCode: '98122', city: 'Seattle', region: 'WA', country: 'USA', ), customProperties: CustomProperties() ..addStringProperty('phoneNumber', phoneNumber) ..addIntProperty('age', age), ); await Amplify.Analytics.identifyUser( userId: userId, userProfile: userProfile, ); } ``` import flutter0 from "/src/fragments/lib/analytics/native_common/identify-use-cases.mdx";