EnvVariable constructor

EnvVariable({
  1. required String name,
  2. required String value,
  3. AcpJsonObject? meta,
})

Creates a EnvVariable value.

Implementation

EnvVariable({required this.name, required this.value, this.meta});