Report constructor

Report(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. DateTime? endDate,
  7. bool? includeChildren,
  8. DateTime? startDate,
  9. String? status,
  10. String? url,
  11. DateTime? urlExpiresAt
)

Implementation

Report(
  id,
  createdAt,
  updatedAt,
  objectType,
  mode,
  this.endDate,
  this.includeChildren,
  this.startDate,
  this.status,
  this.url,
  this.urlExpiresAt,
) : super(id, createdAt, updatedAt, objectType, mode);