UdTextButton constructor

UdTextButton({
  1. String? text,
  2. double? fontSize,
  3. Color? fontColor,
  4. FontWeight? fontWeight,
  5. EdgeInsets? padding,
  6. Function? function,
  7. bool? skipTraversal,
})

Implementation

UdTextButton({
  this.text,
  this.fontSize,
  this.fontColor,
  this.fontWeight,
  this.padding,
  this.function,
  this.skipTraversal,
});