toJson method

Map<String, dynamic> toJson()

Implementation

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