configurable/lib/configuration_provider.dart

12 lines
292 B
Dart
Raw Normal View History

/// 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});
2021-03-24 13:34:03 +07:00
}