EnvironmentVariable constructor

EnvironmentVariable({
  1. required String name,
  2. required String value,
  3. EnvironmentVariableType? type,
})

Implementation

EnvironmentVariable({
  required this.name,
  required this.value,
  this.type,
});