#!/usr/bin/env dart import 'dart:io' show Platform; main() { Map envVars = Platform.environment; envVars.forEach((k, v) => { print('$k = $v') }); }