toJson method
Implementation
Map<String, Object?> toJson() {
var avatarUrl = this.avatarUrl;
var displayName = this.displayName;
var displayNameKey = this.displayNameKey;
var id = this.id;
var type = this.type;
var url = this.url;
final json = <String, Object?>{};
if (avatarUrl != null) {
json[r'avatarUrl'] = avatarUrl;
}
if (displayName != null) {
json[r'displayName'] = displayName;
}
if (displayNameKey != null) {
json[r'displayNameKey'] = displayNameKey;
}
if (id != null) {
json[r'id'] = id;
}
if (type != null) {
json[r'type'] = type;
}
if (url != null) {
json[r'url'] = url;
}
return json;
}