AWSPinpointUserProfile constructor

AWSPinpointUserProfile({
  1. String? name,
  2. String? email,
  3. String? plan,
  4. UserProfileLocation? location,
  5. CustomProperties? customProperties,
  6. Map<String, List<String>>? userAttributes,
})

Extends the category-defined UserProfile class to include features supported relevant to Pinpoint only.

Implementation

AWSPinpointUserProfile({
  super.name,
  super.email,
  super.plan,
  super.location,
  super.customProperties,
  this.userAttributes,
});