toJson method
Implementation
Map<String, dynamic> toJson() {
final userAttributes = this.userAttributes;
final userId = this.userId;
return {
if (userAttributes != null) 'UserAttributes': userAttributes,
if (userId != null) 'UserId': userId,
};
}