RPCSign constructor

RPCSign({
  1. required XRPTransaction transaction,
  2. String? secret,
  3. String? seed,
  4. String? seedHex,
  5. String? passphrase,
  6. XRPKeyAlgorithm? keyType,
  7. bool offline = false,
  8. bool? buildPath,
  9. int feeMulMax = 10,
  10. int feeDivMax = 1,
})

Implementation

RPCSign(
    {required this.transaction,
    this.secret,
    this.seed,
    this.seedHex,
    this.passphrase,
    this.keyType,
    this.offline = false,
    this.buildPath,
    this.feeMulMax = 10,
    this.feeDivMax = 1});