blocksGet function

Future<Blocks?> blocksGet(
  1. BlocksGet blocksGet
)

Implementation

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