build method

String build(
  1. SignedBundle bundle,
  2. SecpPublicKey senderPublicKey,
  3. int nonce
)

Implementation

String build(SignedBundle bundle, SecpPublicKey senderPublicKey, int nonce) {
  return DartApi.native.coeusTxBuilder
      .build(_ffi, bundle.ffi, senderPublicKey.ffi, nonce)
      .extract((res) => res.asString);
}