Policy constructor

Policy({
  1. String? body,
  2. DateTime? createdAt,
  3. DateTime? updatedAt,
  4. String? handle,
  5. String? title,
  6. String? url,
})

Implementation

Policy({
  this.body,
  this.createdAt,
  this.updatedAt,
  this.handle,
  this.title,
  this.url,
});