IstButton constructor

const IstButton({
  1. Key? key,
  2. ButtonType buttonType = ButtonType.primary,
  3. String? title,
  4. Widget? customTitle,
  5. bool isLoading = false,
  6. VoidCallback? action,
})

Implementation

const IstButton({
  super.key,
  this.buttonType = ButtonType.primary,
  this.title,
  this.customTitle,
  this.isLoading = false,
  this.action,
});