EnvironmentVariableInfo constructor

const EnvironmentVariableInfo({
  1. required String name,
  2. required String valueType,
  3. required bool isNull,
})

Implementation

const EnvironmentVariableInfo({
  required this.name,
  required this.valueType,
  required this.isNull,
});