SignOptions constructor

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

Implementation

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