FileSecretsRepository constructor

FileSecretsRepository({
  1. required String secretsFile,
  2. Random? random,
})

secretsFile is the path to where the secrets file can be found and stored.

Implementation

FileSecretsRepository({
  required this.secretsFile,
  this.random,
});