ChannelPartialResponse constructor

const ChannelPartialResponse({
  1. required String id,
  2. required int type,
  3. String? name,
  4. List<ChannelPartialRecipientResponse>? recipients,
})

Implementation

const ChannelPartialResponse({
  required this.id,
  required this.type,
  this.name,
  this.recipients,
});