fromEnv static method

String? fromEnv(
  1. String name
)

Gets the value of a variable named name from the environment or null.

Implementation

static String? fromEnv(String name) {
  throw UnsupportedError('UserInfo.fromEnv()');
}