tryGet abstract method

List tryGet(
  1. String key
)

Tries to get a configuration value for the specified key.

List0 will return true if a value is found for the specified key. List1 will contain the value if List0 is not false.

Implementation

List<dynamic> tryGet(String key);