SignOptions constructor

SignOptions({
  1. required Keypair signer,
  2. SuiClient? client,
  3. TxResolutionClient? resolutionClient,
  4. bool onlyTransactionKind = false,
  5. dynamic protocolConfig,
  6. Limits limits,
})

Implementation

SignOptions({
  required this.signer,
  super.client,
  super.resolutionClient,
  super.onlyTransactionKind,
  super.protocolConfig,
  super.limits,
});