editGroupCallTitle method

Future<Result<UpdatesBase>> editGroupCallTitle({
  1. required InputGroupCallBase call,
  2. required String title,
})

Edit Group Call Title.

ID: 1ca6ac0a.

Implementation

Future<Result<UpdatesBase>> editGroupCallTitle({
  required InputGroupCallBase call,
  required String title,
}) async {
  // Preparing the request.
  final request = PhoneEditGroupCallTitle(
    call: call,
    title: title,
  );

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<UpdatesBase>();
}