config property

Option<Map<String, dynamic>> config

Get the current config from the EMULATORS_CONFIG environment variable.

Implementation

static Option<Map<String, dynamic>> get config => Platform.environment
    .lookup('EMULATORS_CONFIG')
    .alt(() => stringOption(_kConfigJson))
    .flatMap(_parseJson);