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