dartfmt
diff --git a/lib/src/property.dart b/lib/src/property.dart
index a2f4f6e..c6b9ccf 100644
--- a/lib/src/property.dart
+++ b/lib/src/property.dart
@@ -823,12 +823,7 @@
   String get cssExpression {
     return (top == left && bottom == right && top == right)
         ? "${left}px"
-        : "${top != null ? '$top' : '0'}px ${right != null
-            ? '$right'
-            : '0'}px ${bottom != null ? '$bottom' : '0'}px ${left !=
-                null
-            ? '$left'
-            : '0'}px";
+        : "${top != null ? '$top' : '0'}px ${right != null ? '$right' : '0'}px ${bottom != null ? '$bottom' : '0'}px ${left != null ? '$left' : '0'}px";
   }
 }