toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final ciphers = this.ciphers;
final clientAuthEnabled = this.clientAuthEnabled;
final commonName = this.commonName;
final enabled = this.enabled;
final enforce = this.enforce;
final ignoreValidationErrors = this.ignoreValidationErrors;
final keyAlias = this.keyAlias;
final keyAliasReference = this.keyAliasReference;
final protocols = this.protocols;
final trustStore = this.trustStore;
return {
'ciphers': ?ciphers,
'clientAuthEnabled': ?clientAuthEnabled,
'commonName': ?commonName,
'enabled': ?enabled,
'enforce': ?enforce,
'ignoreValidationErrors': ?ignoreValidationErrors,
'keyAlias': ?keyAlias,
'keyAliasReference': ?keyAliasReference,
'protocols': ?protocols,
'trustStore': ?trustStore,
};
}