0

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?

LMurta
  • 1
  • 1
  • About which problem did you encounter while implementing? Your code snippet is pretty short. Can you expand it? – josxha Jun 26 '20 at 17:55
  • The Documentation says: _To find a slide's speaker note shape, find the slide's notes Page in its SlideProperties message. The shape containing the speaker notes text is identified by the speakerNotesObjectId field in the notes page's NotesProperties message._ I got this with ''' var notesId = slide.slideProperties.notesPage.notesProperties.speakerNotesObjectId; ''' _To read a slide's speaker notes, find an object with this ID on the notes page and read its text._ How do I find an object by ID and read its text? – LMurta Jun 27 '20 at 19:03

0 Answers0