class Environment { final String name; final List apps; final String provider; Environment({ required this.name, required this.apps, required this.provider, }); }