ConfigVariable constructor

ConfigVariable({
  1. bool? boolValue,
  2. EncryptionKey? encryptionKeyValue,
  3. String? intValue,
  4. String? key,
  5. Secret? secretValue,
  6. String? stringValue,
})

Implementation

ConfigVariable({
  this.boolValue,
  this.encryptionKeyValue,
  this.intValue,
  this.key,
  this.secretValue,
  this.stringValue,
});