toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedNonAlphanumericCharacters =
this.allowedNonAlphanumericCharacters;
final customStrengthOptions = this.customStrengthOptions;
final enforcementState = this.enforcementState;
final forceUpgradeOnSignin = this.forceUpgradeOnSignin;
final schemaVersion = this.schemaVersion;
return {
'allowedNonAlphanumericCharacters': ?allowedNonAlphanumericCharacters,
'customStrengthOptions': ?customStrengthOptions,
'enforcementState': ?enforcementState,
'forceUpgradeOnSignin': ?forceUpgradeOnSignin,
'schemaVersion': ?schemaVersion,
};
}