MessageEmbedFooter.fromJson constructor

MessageEmbedFooter.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory MessageEmbedFooter.fromJson(Map<String, dynamic> json) {
  return MessageEmbedFooter(
    text: json['text'],
    iconUrl: json['icon_url'],
    proxyIconUrl: json['proxy_icon_url'],
  );
}