feat: add named constants to HorizontalSpacing/VerticalSpacing

pull/2083/head
Adil Hanney 8 months ago
parent 9a7421a53b
commit 31b5244e70
  1. 2
      lib/src/common/structs/horizontal_spacing.dart
  2. 2
      lib/src/common/structs/vertical_spacing.dart

@ -9,4 +9,6 @@ class HorizontalSpacing {
final double left;
final double right;
static const zero = HorizontalSpacing(0, 0);
}

@ -9,4 +9,6 @@ class VerticalSpacing {
final double top;
final double bottom;
static const zero = VerticalSpacing(0, 0);
}

Loading…
Cancel
Save