resolveSpacing static method
Resolve spacing value from string token
Implementation
static double resolveSpacing(BuildContext context, String? value) {
if (value == null) return 0.0;
final spacing = FlyTheme.of(context).spacing;
return FlyValue.resolveDouble(value, context, spacing);
}