PostCreateRequest constructor

PostCreateRequest({
  1. ItemBody? body,
  2. List<String>? categories,
  3. String? importance,
  4. List<Recipient>? recipients,
  5. String? subject,
})

Implementation

PostCreateRequest({
  this.body,
  this.categories,
  this.importance,
  this.recipients,
  this.subject,
});