bookmarksGetBookmark function

Future<Bookmark?> bookmarksGetBookmark(
  1. APlurkID aPlurkID
)

Implementation

Future<Bookmark?> bookmarksGetBookmark(APlurkID  aPlurkID) async {
  dynamic json = await _clientPost(PlurkEndpoints.bookmarksGetBookmark(),
      body: aPlurkID.toBody());
  return (json == null) ? (null) : (Bookmark.fromJson(json));
}