timelineMarkAsRead function

Future<Base?> timelineMarkAsRead(
  1. TimelineMarkAsRead timelineMarkAsRead
)

Implementation

Future<Base?> timelineMarkAsRead(TimelineMarkAsRead timelineMarkAsRead) async {
  dynamic json = await _clientPost(PlurkEndpoints.timelineMarkAsRead(),
      body: timelineMarkAsRead.toBody());
  return (json == null) ? (null) : (Base.fromJson(json));
}