RepositoryStatus constructor

RepositoryStatus({
  1. DateTime? createdAt,
  2. DateTime? updatedAt,
  3. String? state,
  4. String? targetUrl,
  5. String? description,
  6. String? context,
})

Implementation

RepositoryStatus({
  this.createdAt,
  this.updatedAt,
  this.state,
  this.targetUrl,
  this.description,
  this.context,
});