UpdateInboxOptions constructor

UpdateInboxOptions({
  1. String? name,
  2. String? description,
  3. List<String>? tags = const [],
  4. DateTime? expiresAt,
  5. bool? favourite,
})

Returns a new UpdateInboxOptions instance.

Implementation

UpdateInboxOptions({
  this.name,
  this.description,
  this.tags = const [],
  this.expiresAt,
  this.favourite,
});