UpdateChannel constructor

UpdateChannel({
  1. required String id,
  2. String? name,
  3. String? description,
  4. String? nickname,
  5. String? avatarUrl,
  6. int? writeMaxRole,
  7. int? readMaxRole,
})

Implementation

UpdateChannel({
  required this.id,
  this.name,
  this.description,
  this.nickname,
  this.avatarUrl,
  this.writeMaxRole,
  this.readMaxRole,
});