StyleSheet constructor
const
StyleSheet({
- Map<
Breakpoints, String?> bottom = defaultStringEmptyValue, - Map<
Breakpoints, String?> left = defaultStringEmptyValue, - Map<
Breakpoints, String?> right = defaultStringEmptyValue, - Map<
Breakpoints, String?> top = defaultStringEmptyValue, - Map<
Breakpoints, String?> position = defaultStringEmptyValue, - Map<
Breakpoints, String?> boxShadowColor = defaultStringEmptyValue, - Map<
Breakpoints, String?> boxShadowSpread = defaultStringEmptyValue, - Map<
Breakpoints, String?> boxShadowBlur = defaultStringEmptyValue, - Map<
Breakpoints, String?> boxShadowOffsetY = defaultStringEmptyValue, - Map<
Breakpoints, String?> boxShadowOffsetX = defaultStringEmptyValue, - Map<
Breakpoints, String?> borderRadiusBottomRight = defaultStringEmptyValue, - Map<
Breakpoints, String?> borderRadiusBottomLeft = defaultStringEmptyValue, - Map<
Breakpoints, String?> borderRadiusTopRight = defaultStringEmptyValue, - Map<
Breakpoints, String?> borderRadiusTopLeft = defaultStringEmptyValue, - Map<
Breakpoints, String?> borderRadius = defaultStringEmptyValue, - Map<
Breakpoints, String?> overflowY = defaultStringEmptyValue, - Map<
Breakpoints, int?> flex = defaultIntEmptyValue, - Map<
Breakpoints, String?> alignItems = defaultStringEmptyValue, - Map<
Breakpoints, String?> crossAxisAlignment = defaultStringEmptyValue, - Map<
Breakpoints, String?> justifyContent = defaultStringEmptyValue, - Map<
Breakpoints, String?> mainAxisAlignment = defaultStringEmptyValue, - Map<
Breakpoints, String?> flexDirection = defaultStringEmptyValue, - Map<
Breakpoints, String?> marginHorizontal = defaultStringEmptyValue, - Map<
Breakpoints, String?> marginVertical = defaultStringEmptyValue, - Map<
Breakpoints, String?> marginBottom = defaultStringEmptyValue, - Map<
Breakpoints, String?> marginRight = defaultStringEmptyValue, - Map<
Breakpoints, String?> marginLeft = defaultStringEmptyValue, - Map<
Breakpoints, String?> marginTop = defaultStringEmptyValue, - Map<
Breakpoints, String> margin = defaultStringZeroValue, - Map<
Breakpoints, String?> paddingHorizontal = defaultStringEmptyValue, - Map<
Breakpoints, String?> paddingVertical = defaultStringEmptyValue, - Map<
Breakpoints, String?> paddingBottom = defaultStringEmptyValue, - Map<
Breakpoints, String?> paddingRight = defaultStringEmptyValue, - Map<
Breakpoints, String?> paddingLeft = defaultStringEmptyValue, - Map<
Breakpoints, String?> paddingTop = defaultStringEmptyValue, - Map<
Breakpoints, String> padding = defaultStringZeroValue, - Map<
Breakpoints, String?> backgroundColor = defaultStringEmptyValue, - Map<
Breakpoints, String?> color = defaultStringEmptyValue, - Map<
Breakpoints, String?> height = defaultStringEmptyValue, - Map<
Breakpoints, String?> width = defaultStringEmptyValue, - Map<
Breakpoints, String?> fontSize = defaultStringEmptyValue, - Map<
Breakpoints, String?> fontWeight = defaultStringEmptyValue, - Map<
Breakpoints, String?> letterSpacing = defaultStringEmptyValue, - Map<
Breakpoints, String?> fontFamily = 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%%
this.fontSize = defaultStringEmptyValue,
this.fontWeight = defaultStringEmptyValue,
this.letterSpacing = defaultStringEmptyValue,
this.fontFamily = defaultStringEmptyValue,
});