signout method
Implementation
Future signout(int sessionId) async {
oprot.writeMessageBegin(
new TMessage("signout", TMessageType.ONEWAY, nextSeqid()));
signout_args args = new signout_args();
args.sessionId = sessionId;
args.write(oprot);
oprot.writeMessageEnd();
await oprot.trans_.flush(true);
}