ElementStyle constructor

ElementStyle({
  1. String? margin,
  2. String? padding,
  3. String? width,
  4. String? height,
  5. String? fontSize,
  6. String? fontColor,
  7. String? fontWeight,
  8. String? align,
  9. String? innerAlign,
  10. String? textLines,
  11. String? color,
  12. String? backgroundColor,
  13. String? borderRadius,
  14. String? borderColor,
  15. String? borderWidth,
})

Implementation

ElementStyle(
    {this.margin,
    this.padding,
    this.width,
    this.height,
    this.fontSize,
    this.fontColor,
    this.fontWeight,
    this.align,
    this.innerAlign,
    this.textLines,
    this.color,
    this.backgroundColor,
    this.borderRadius,
    this.borderColor,
    this.borderWidth});