getSaved method
Get Saved.
ID: 82f1e39f.
Implementation
Future<Result<Vector<SavedContactBase>>> getSaved() async {
// Preparing the request.
final request = ContactsGetSaved();
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._toVector<SavedContactBase>();
}