Sambo Chea
649f25b265
- Split tests file - Fixed and nullable functions - Able to set or remove config from system config
12 lines
292 B
Dart
12 lines
292 B
Dart
/// Configuration Provider
|
|
///
|
|
/// @author sombochea
|
|
/// @since 1.0.0
|
|
abstract class ConfigurationProvider {
|
|
/// check has key or not in implemented classes
|
|
bool containsKey(String key);
|
|
|
|
/// get or null in implemented classes
|
|
String? getOrNull(String key, {String? defaultValue});
|
|
}
|