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