importJson method
Returns a EmbedAuthorBuilder
with data from the raw json
Implementation
EmbedAuthorBuilder importJson(Map<String, String?> raw) {
this.name = raw["name"];
this.url = raw["url"];
this.iconUrl = raw["icon_url"];
return this;
}