Author constructor

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

Implementation

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