factory EnvVar.fromJson(Map<String, dynamic> json) { return EnvVar(name: json['name'] ?? '', value: json['value'] ?? ''); }