getSharedNoteContent function
Implementation
Future<Map> getSharedNoteContent(
BuildContext context, Widget childPage, Map sharedNoteData) async {
final sharedNoteUrl = sharedNoteData[noteUrl];
// Get note content
final noteContent = await readExternalPod(sharedNoteUrl, context, childPage);
final noteContentMap = noteInfoMap(noteContent);
return noteContentMap;
}