ComputedOptions constructor

ComputedOptions({
  1. required String messageType,
  2. required String to,
  3. Signer? signer,
  4. dynamic messageObj,
  5. String? account,
  6. String? pgpPrivateKey,
})

Implementation

ComputedOptions(
    {required this.messageType,
    required this.to,
    this.signer,
    this.messageObj,
    this.account,
    this.pgpPrivateKey});