MutableConfigurationProvider class abstract

Mutable Configuration Provider

@author sombochea @since 1.0.3

Inheritance
Implementers

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

containsKey(String key) bool
check has key or not in implemented classes
inherited
containsKeyAsync(String key) Future<bool>
check has key or not for async function
inherited
getOrNull(String key, {String? defaultValue}) String?
get or null in implemented classes
inherited
getOrNullAsync(String key, {String? defaultValue}) Future<String?>
get or null for async function
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(String key) → void
Allow to remove the key from config values
removeAll() → void
Allow to remove all values from config values
removeAllAsync() Future<void>
Allow to remove all values from config values in async function
removeAsync(String key) Future<void>
Allow to remove the key from config values in async function
set(String key, String? value) → void
Allow to set the value into config values
setAll(Map<String, String?> configs) → void
Allow to set all values into config values
setAllAsync(Map<String, String?> configs) Future<void>
Allow to set all values into config values in async function
setAsync(String key, String? value) Future<void>
Allow to set the value into config values in async function
toString() String
A string representation of this object.
inherited

Operators

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