updatePersonalChannel method
Update Personal Channel.
ID: d94305e0.
Implementation
Future<Result<Boolean>> updatePersonalChannel({
required InputChannelBase channel,
}) async {
// Preparing the request.
final request = AccountUpdatePersonalChannel(channel: channel);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<Boolean>();
}