timelineToggleComments function

Future<ToggleComments?> timelineToggleComments(
  1. TimelineToggleComments timelineToggleComments
)

Implementation

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