EnvironmentVariable.fromJson constructor
Implementation
factory EnvironmentVariable.fromJson(Map<String, dynamic> json) {
return EnvironmentVariable(
key: json['Key'] as String,
value: json['Value'] as String,
secure: json['Secure'] as bool?,
);
}