toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (plaintext != null) 'plaintext': plaintext!,
      if (plaintextCrc32c != null) 'plaintextCrc32c': plaintextCrc32c!,
      if (protectionLevel != null) 'protectionLevel': protectionLevel!,
      if (verifiedCiphertextCrc32c != null)
        'verifiedCiphertextCrc32c': verifiedCiphertextCrc32c!,
    };