timelineReportAbuse function

Future<Base?> timelineReportAbuse(
  1. TimelineReportAbuse timelineReportAbuse
)

Implementation

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