toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowOverwrite = this.allowOverwrite;
  final blockSize = this.blockSize;
  final cpuMemCost = this.cpuMemCost;
  final delegatedProjectNumber = this.delegatedProjectNumber;
  final dkLen = this.dkLen;
  final hashAlgorithm = this.hashAlgorithm;
  final memoryCost = this.memoryCost;
  final parallelization = this.parallelization;
  final rounds = this.rounds;
  final saltSeparator = this.saltSeparator;
  final sanityCheck = this.sanityCheck;
  final signerKey = this.signerKey;
  final targetProjectId = this.targetProjectId;
  final users = this.users;
  return {
    'allowOverwrite': ?allowOverwrite,
    'blockSize': ?blockSize,
    'cpuMemCost': ?cpuMemCost,
    'delegatedProjectNumber': ?delegatedProjectNumber,
    'dkLen': ?dkLen,
    'hashAlgorithm': ?hashAlgorithm,
    'memoryCost': ?memoryCost,
    'parallelization': ?parallelization,
    'rounds': ?rounds,
    'saltSeparator': ?saltSeparator,
    'sanityCheck': ?sanityCheck,
    'signerKey': ?signerKey,
    'targetProjectId': ?targetProjectId,
    'users': ?users,
  };
}