undeleteAgendaById method
Implementation
Future<Agenda> undeleteAgendaById(String sdkId, String id, String rev) async {
final res = await _methodChannel.invokeMethod<String>(
'AgendaApi.undeleteAgendaById',
{
"sdkId": sdkId,
"id": jsonEncode(id),
"rev": jsonEncode(rev),
}
);
if (res == null) throw AssertionError("received null result from platform method undeleteAgendaById");
final parsedResJson = jsonDecode(res);
return Agenda.fromJSON(parsedResJson);
}