getCast method

Future<CastAddBody> getCast(
  1. int fid
)

Implementation

Future<CastAddBody> getCast(int fid) async {
  CastId request = CastId();
  request.fid = $fixnum.Int64(fid);

  Message response = await _hubService.hubClient.getCast(request);

  return response.data.castAddBody;
}