Returns the environment variable value for the given name, or null if not defined.
name
null
final userHome = context.getEnvVar('HOME');
String? getEnvVar(String name) => io.Platform.environment[name];