setYouDaoNote method

void setYouDaoNote(
  1. String text,
  2. dynamic images,
  3. String title,
  4. String source,
  5. String author,
  6. String notebook,
)

Implementation

void setYouDaoNote(String text, dynamic images, String title, String source,
    String author, String notebook) {
  Map params = {};
  params[kText] = text;
  params[kImages] = images;
  params[kTitle] = title;
  params[kSource] = source;
  params[kAuthor] = author;
  params[kNoteBook] = notebook;
  int? id = ShareSDKPlatforms.youdaoNote.id;
  map["@platform($id)"] = params;
}