CustomTextButton constructor

const CustomTextButton({
  1. Key? key,
  2. String? text,
  3. String? actionLink,
  4. String? actionType,
  5. String textColor = "#000",
  6. String bgColor = "#FFF",
})

Implementation

const CustomTextButton({
  Key? key,
  this.text,
  this.actionLink,
  this.actionType,
  this.textColor = "#000",
  this.bgColor = "#FFF",
}) : super(key: key);