toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final minValidScore = this.minValidScore;
  final name = this.name;
  final siteSecret = this.siteSecret;
  final siteSecretSet = this.siteSecretSet;
  final tokenTtl = this.tokenTtl;
  return {
    'minValidScore': ?minValidScore,
    'name': ?name,
    'siteSecret': ?siteSecret,
    'siteSecretSet': ?siteSecretSet,
    'tokenTtl': ?tokenTtl,
  };
}