Style constructor
Style({
- String? borderColor,
- double? cornerRadius,
- Map<
String, num> ? padding, - int? borderWidth,
- int? font,
- int? textAlignment,
- String? textColor,
- String? placeholderColor,
- int? width,
- int? height,
- Map<
String, num> ? margin, - String? backgroundColor,
- int? minWidth,
- int? maxWidth,
- int? minHeight,
- 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,
});