GroupUpdateOptions constructor

GroupUpdateOptions({
  1. String? name,
  2. String? description,
  3. String? image,
  4. DateTime? scheduleAt,
  5. DateTime? scheduleEnd,
  6. ChatStatus? status,
  7. String? meta,
  8. dynamic rules,
})

Implementation

GroupUpdateOptions({
  this.name,
  this.description,
  this.image,
  this.scheduleAt,
  this.scheduleEnd,
  this.status,
  this.meta,
  this.rules,
});