finish method
Finish building, and store into the fbBuilder
.
Implementation
@override
int finish(fb.Builder fbBuilder) {
fbBuilder.startTable(7);
fbBuilder.addInt32(0, _algorithm?.value);
fbBuilder.addInt32(1, _curve?.value);
fbBuilder.addInt32(2, _hash?.value);
fbBuilder.addInt32(3, _cipher?.value);
fbBuilder.addInt32(4, _compression?.value);
fbBuilder.addInt32(5, _compressionLevel);
fbBuilder.addInt32(6, _rsaBits);
return fbBuilder.endTable();
}