SetGroupCallTitle constructor

const SetGroupCallTitle({
  1. required int groupCallId,
  2. required String title,
})

Sets group call title. Requires groupCall.can_be_managed group call flag

Implementation

const SetGroupCallTitle({
  required this.groupCallId,
  required this.title,
});