Actor constructor

Actor(
  1. List? context,
  2. String? id,
  3. String? type,
  4. String? name,
  5. String? preferredUsername,
  6. String? summary,
  7. String? inbox,
  8. String? outbox,
  9. String? followers,
  10. String? following,
  11. Media? icon,
  12. PublicKey? publicKey,
  13. Endpoints? endpoints,
  14. DateTime? published,
)

Implementation

Actor(
  this.context,
  this.id,
  this.type,
  this.name,
  this.preferredUsername,
  this.summary,
  this.inbox,
  this.outbox,
  this.followers,
  this.following,
  this.icon,
  this.publicKey,
  this.endpoints,
  this.published,
);