SqlServerEncryptionOptions.fromJson constructor

SqlServerEncryptionOptions.fromJson(
  1. Map json_
)

Implementation

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