SqlServerEncryptionOptions.fromJson constructor
SqlServerEncryptionOptions.fromJson(
- Map json_
Implementation
SqlServerEncryptionOptions.fromJson(core.Map json_)
: this(
certPath: json_.containsKey('certPath')
? json_['certPath'] as core.String
: null,
pvkPassword: json_.containsKey('pvkPassword')
? json_['pvkPassword'] as core.String
: null,
pvkPath: json_.containsKey('pvkPath')
? json_['pvkPath'] as core.String
: null,
);