toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final algorithm = this.algorithm;
  final memoryCost = this.memoryCost;
  final rounds = this.rounds;
  final saltSeparator = this.saltSeparator;
  final signerKey = this.signerKey;
  return {
    'algorithm': ?algorithm,
    'memoryCost': ?memoryCost,
    'rounds': ?rounds,
    'saltSeparator': ?saltSeparator,
    'signerKey': ?signerKey,
  };
}