Style constructor

Style({
  1. String? borderColor,
  2. double? cornerRadius,
  3. Map<String, num>? padding,
  4. int? borderWidth,
  5. int? font,
  6. int? textAlignment,
  7. String? textColor,
  8. String? placeholderColor,
  9. int? width,
  10. int? height,
  11. Map<String, num>? margin,
  12. String? backgroundColor,
  13. int? minWidth,
  14. int? maxWidth,
  15. int? minHeight,
  16. int? maxHeight,
})

Implementation

Style({
  this.borderColor,
  this.cornerRadius,
  this.padding,
  this.borderWidth,
  this.font,
  this.textAlignment,
  this.textColor,
  this.placeholderColor,
  this.width,
  this.height,
  this.margin,
  this.backgroundColor,
  this.minWidth,
  this.maxWidth,
  this.minHeight,
  this.maxHeight,
});