SystemConfig class

System Configuration Static Functions

@author sombochea @since 1.0.0

Constructors

SystemConfig()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

containsKey(String key) bool
containsKeyAsync(String key) Future<bool>
get(String key, {String? defaultValue}) String
getOrNull(String key, {String? defaultValue}) String?
getOrNullAsync(String key, {String? defaultValue}) Future<String?>
getProvider() ConfigurationProvider
remove(String key) → void
removeAll() → void
removeAllAsync() Future<void>
removeAsync(String key) Future<void>
set(String key, String? value) → void
setAll(Map<String, String?> values) → void
setAllAsync(Map<String, String?> values) Future<void>
setAsync(String key, String? value) Future<void>
setProvider(ConfigurationProvider provider) → void
Set configuration provider