EnvVar constructor

EnvVar({
  1. String? name,
  2. String? value,
  3. EnvVarSource? valueFrom,
})

Implementation

EnvVar({
  this.name,
  this.value,
  this.valueFrom,
});