setMainProfileTab method
Set Main Profile Tab.
ID: 5dee78b0.
Implementation
Future<Result<Boolean>> setMainProfileTab({
required ProfileTabBase tab,
}) async {
// Preparing the request.
final request = AccountSetMainProfileTab(tab: tab);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<Boolean>();
}