getEnvironmentVariable method

  1. @override
String? getEnvironmentVariable(
  1. String name
)
override

Get an environment variable value. Returns null if not available or not supported on this platform.

Implementation

@override
String? getEnvironmentVariable(String name) {
  return io.Platform.environment[name];
}