RPCChannelAuthorize constructor

RPCChannelAuthorize({
  1. required String channelId,
  2. required String amount,
  3. String? secret,
  4. String? seed,
  5. String? seedHex,
  6. String? passphrase,
  7. XRPKeyAlgorithm? keyType,
  8. XRPLLedgerIndex? ledgerIndex = XRPLLedgerIndex.validated,
})

Implementation

RPCChannelAuthorize({
  required this.channelId,
  required this.amount,
  this.secret,
  this.seed,
  this.seedHex,
  this.passphrase,
  this.keyType,
  XRPLLedgerIndex? ledgerIndex = XRPLLedgerIndex.validated,
}) : super(ledgerIndex: ledgerIndex);