There is a similar question at:
Can I get speaker notes from Google Slides by API?
and documentation here:
https://developers.google.com/slides/how-tos/notes
But I can't get it working in flutter.
var ssMap = pp.slides.asMap();
ssMap.forEach((key, slide) {
print('Slide: ${key} : ${slide} ');
var notesId = slide.slideProperties.notesPage.notesProperties.speakerNotesObjectId;
print("NOTE: " + notesId.toString());
How do I read speaker's notes?