unmuteActorList method
Implementation
Future<Tuple2> unmuteActorList(String list) async {
Map<String, dynamic> params = {"list": list};
http.Response res = await api.post("app.bsky.graph.unmuteActorList",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer ${api.session.accessJwt}"
},
body: json.encode(params));
return Tuple2<int, Map<String, dynamic>>(
res.statusCode, json.decode(res.body));
}