putSpacing method
Put a spacing value
Implementation
void putSpacing(String key, num value) {
if (key.isEmpty) {
throw ArgumentError('Spacing key cannot be empty');
}
if (value < 0) {
throw ArgumentError('Spacing value cannot be negative: $value');
}
updateSpacing((spacing) => spacing.put(key, value.toDouble()));
}