all method
Returns a copy of all configuration data.
The returned map is a shallow copy. Modifications to nested objects will affect the original configuration.
final all = config.all();
print('Available configs: ${all.keys}');
Implementation
@override
Map<String, dynamic> all() {
return Map<String, dynamic>.from(_config);
}