toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final finalizeEnrollmentTime = this.finalizeEnrollmentTime;
  final hashingAlgorithm = this.hashingAlgorithm;
  final periodSec = this.periodSec;
  final sessionInfo = this.sessionInfo;
  final sharedSecretKey = this.sharedSecretKey;
  final verificationCodeLength = this.verificationCodeLength;
  return {
    'finalizeEnrollmentTime': ?finalizeEnrollmentTime,
    'hashingAlgorithm': ?hashingAlgorithm,
    'periodSec': ?periodSec,
    'sessionInfo': ?sessionInfo,
    'sharedSecretKey': ?sharedSecretKey,
    'verificationCodeLength': ?verificationCodeLength,
  };
}