UIButtonDefaults constructor

UIButtonDefaults({
  1. Color? borderColor,
  2. double? borderRadius,
  3. double? borderWidth,
  4. double? elevation,
  5. Color? labelColor,
  6. Color? bgColor,
  7. double? widthFactor,
  8. EdgeInsets? padding,
  9. Color? shadowColor,
})

Implementation

UIButtonDefaults({
  this.borderColor,
  this.borderRadius,
  this.borderWidth,
  this.elevation,
  this.labelColor,
  this.bgColor,
  this.widthFactor,
  this.padding,
  this.shadowColor,
});