RC class
- Available extensions
Properties
Methods
-
call<
T> (String keys) → T? -
Returns a
T
typed value ornull
. -
contains(
String keys) → bool -
Whether this
RuntimeConfigure
contains the givenkeys
. -
delete(
String keys) → void -
Delete value by
keys
in current runtime configure. -
env(
String name) → String? -
Available on RC, provided by the RC$Environment extension
Read the value of env and serialize it as a String?. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
set<
T> (String keys, T value) → void -
Sets a
value
by dotiable keys. -
toEnvironmentMap(
{bool skipDotiableKeys = true}) → Map< String, String> -
Available on RC, provided by the RC$Environment extension
Returns ENV parts of KV. -
toString(
) → String -
A string representation of this object.
inherited
-
update<
T> (String keys, T updater(T? value)) → void -
Updates a value by dotiable keys with
updater
callbacl. -
use(
Loader preset) → void -
Use a Loader, If preset contains in current
RuntimeConfigure
skip it.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited