PageBuild constructor

PageBuild({
  1. String? url,
  2. String? status,
  3. PageBuildError? error,
  4. PageBuildPusher? pusher,
  5. String? commit,
  6. int? duration,
  7. DateTime? createdAt,
  8. DateTime? updatedAt,
})

Implementation

PageBuild({
  this.url,
  this.status,
  this.error,
  this.pusher,
  this.commit,
  this.duration,
  this.createdAt,
  this.updatedAt,
});