ImportContextBakImportOptionsEncryptionOptions.fromJson constructor

ImportContextBakImportOptionsEncryptionOptions.fromJson(
  1. Map json_
)

Implementation

ImportContextBakImportOptionsEncryptionOptions.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,
      );