StyleProps constructor

const StyleProps({
  1. double borderRadius = 8,
  2. TextStyle? textStyle,
  3. EdgeInsetsGeometry? padding,
  4. Color? backgroundColor,
  5. Color? borderColor,
  6. InputDecoration? inputDecoration,
  7. CrossAxisAlignment? crossAxisAlignment,
})

Implementation

const StyleProps({
  this.borderRadius = 8,
  this.textStyle,
  this.padding,
  this.backgroundColor,
  this.borderColor,
  this.inputDecoration,
  this.crossAxisAlignment,
});