toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final plaintext = this.plaintext;
  final plaintextCrc32c = this.plaintextCrc32c;
  final protectionLevel = this.protectionLevel;
  final usedPrimary = this.usedPrimary;
  return {
    'plaintext': ?plaintext,
    'plaintextCrc32c': ?plaintextCrc32c,
    'protectionLevel': ?protectionLevel,
    'usedPrimary': ?usedPrimary,
  };
}