StyleSheet constructor

const StyleSheet({
  1. Map<Breakpoints, String?> bottom = defaultStringEmptyValue,
  2. Map<Breakpoints, String?> left = defaultStringEmptyValue,
  3. Map<Breakpoints, String?> right = defaultStringEmptyValue,
  4. Map<Breakpoints, String?> top = defaultStringEmptyValue,
  5. Map<Breakpoints, String?> position = defaultStringEmptyValue,
  6. Map<Breakpoints, String?> boxShadowColor = defaultStringEmptyValue,
  7. Map<Breakpoints, String?> boxShadowSpread = defaultStringEmptyValue,
  8. Map<Breakpoints, String?> boxShadowBlur = defaultStringEmptyValue,
  9. Map<Breakpoints, String?> boxShadowOffsetY = defaultStringEmptyValue,
  10. Map<Breakpoints, String?> boxShadowOffsetX = defaultStringEmptyValue,
  11. Map<Breakpoints, String?> borderRadiusBottomRight = defaultStringEmptyValue,
  12. Map<Breakpoints, String?> borderRadiusBottomLeft = defaultStringEmptyValue,
  13. Map<Breakpoints, String?> borderRadiusTopRight = defaultStringEmptyValue,
  14. Map<Breakpoints, String?> borderRadiusTopLeft = defaultStringEmptyValue,
  15. Map<Breakpoints, String?> borderRadius = defaultStringEmptyValue,
  16. Map<Breakpoints, String?> overflowY = defaultStringEmptyValue,
  17. Map<Breakpoints, int?> flex = defaultIntEmptyValue,
  18. Map<Breakpoints, String?> alignItems = defaultStringEmptyValue,
  19. Map<Breakpoints, String?> crossAxisAlignment = defaultStringEmptyValue,
  20. Map<Breakpoints, String?> justifyContent = defaultStringEmptyValue,
  21. Map<Breakpoints, String?> mainAxisAlignment = defaultStringEmptyValue,
  22. Map<Breakpoints, String?> flexDirection = defaultStringEmptyValue,
  23. Map<Breakpoints, String?> marginHorizontal = defaultStringEmptyValue,
  24. Map<Breakpoints, String?> marginVertical = defaultStringEmptyValue,
  25. Map<Breakpoints, String?> marginBottom = defaultStringEmptyValue,
  26. Map<Breakpoints, String?> marginRight = defaultStringEmptyValue,
  27. Map<Breakpoints, String?> marginLeft = defaultStringEmptyValue,
  28. Map<Breakpoints, String?> marginTop = defaultStringEmptyValue,
  29. Map<Breakpoints, String> margin = defaultStringZeroValue,
  30. Map<Breakpoints, String?> paddingHorizontal = defaultStringEmptyValue,
  31. Map<Breakpoints, String?> paddingVertical = defaultStringEmptyValue,
  32. Map<Breakpoints, String?> paddingBottom = defaultStringEmptyValue,
  33. Map<Breakpoints, String?> paddingRight = defaultStringEmptyValue,
  34. Map<Breakpoints, String?> paddingLeft = defaultStringEmptyValue,
  35. Map<Breakpoints, String?> paddingTop = defaultStringEmptyValue,
  36. Map<Breakpoints, String> padding = defaultStringZeroValue,
  37. Map<Breakpoints, String?> backgroundColor = defaultStringEmptyValue,
  38. Map<Breakpoints, String?> color = defaultStringEmptyValue,
  39. Map<Breakpoints, String?> height = defaultStringEmptyValue,
  40. Map<Breakpoints, String?> width = defaultStringEmptyValue,
})

Implementation

const StyleSheet({
// %%[CODER_START]:StyleSheet_constructor%%
  this.bottom = defaultStringEmptyValue,
  this.left = defaultStringEmptyValue,
  this.right = defaultStringEmptyValue,
  this.top = defaultStringEmptyValue,
  this.position = defaultStringEmptyValue,
  this.boxShadowColor = defaultStringEmptyValue,
  this.boxShadowSpread = defaultStringEmptyValue,
  this.boxShadowBlur = defaultStringEmptyValue,
  this.boxShadowOffsetY = defaultStringEmptyValue,
  this.boxShadowOffsetX = defaultStringEmptyValue,
  this.borderRadiusBottomRight = defaultStringEmptyValue,
  this.borderRadiusBottomLeft = defaultStringEmptyValue,
  this.borderRadiusTopRight = defaultStringEmptyValue,
  this.borderRadiusTopLeft = defaultStringEmptyValue,
  this.borderRadius = defaultStringEmptyValue,
  this.overflowY = defaultStringEmptyValue,
  this.flex = defaultIntEmptyValue,
  this.alignItems = defaultStringEmptyValue,
  this.crossAxisAlignment = defaultStringEmptyValue,
  this.justifyContent = defaultStringEmptyValue,
  this.mainAxisAlignment = defaultStringEmptyValue,
  this.flexDirection = defaultStringEmptyValue,
  this.marginHorizontal = defaultStringEmptyValue,
  this.marginVertical = defaultStringEmptyValue,
  this.marginBottom = defaultStringEmptyValue,
  this.marginRight = defaultStringEmptyValue,
  this.marginLeft = defaultStringEmptyValue,
  this.marginTop = defaultStringEmptyValue,
  this.margin = defaultStringZeroValue,
  this.paddingHorizontal = defaultStringEmptyValue,
  this.paddingVertical = defaultStringEmptyValue,
  this.paddingBottom = defaultStringEmptyValue,
  this.paddingRight = defaultStringEmptyValue,
  this.paddingLeft = defaultStringEmptyValue,
  this.paddingTop = defaultStringEmptyValue,
  this.padding = defaultStringZeroValue,
  this.backgroundColor = defaultStringEmptyValue,
  this.color = defaultStringEmptyValue,
  this.height = defaultStringEmptyValue,
  this.width = defaultStringEmptyValue,
// %%[CODER_END]:StyleSheet_constructor%%
});