EmbedAuthorResponse constructor

const EmbedAuthorResponse({
  1. required String name,
  2. String? url,
  3. String? iconUrl,
  4. String? proxyIconUrl,
})

Implementation

const EmbedAuthorResponse({
  required this.name,
  this.url,
  this.iconUrl,
  this.proxyIconUrl,
});