blocksBlock function

Future<Base?> blocksBlock(
  1. UserID userID
)

Implementation

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