importJson method

EmbedAuthorBuilder importJson(
  1. Map<String, String?> raw
)

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;
}