Activity<T> constructor

Activity<T>(
  1. List<String>? to,
  2. T object,
  3. String id,
  4. String type,
  5. DateTime? published,
  6. String actor,
  7. Object? context,
  8. List<String>? bto,
  9. List<String>? cc,
  10. List<String>? bcc,
  11. List<String>? audience,
)

Implementation

Activity(
  this.to,
  this.object,
  this.id,
  this.type,
  this.published,
  this.actor,
  this.context,
  this.bto,
  this.cc,
  this.bcc,
  this.audience,
);