toJson method

Map<String, dynamic> toJson()

Implementation

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