NsgTextButton constructor

const NsgTextButton({
  1. Key? key,
  2. String text = '',
  3. void onTap()?,
  4. Color? color,
  5. double? fontSize,
  6. TextAlign textAlign = TextAlign.left,
  7. EdgeInsets padding = const EdgeInsets.all(10),
})

Implementation

const NsgTextButton(
    {super.key, this.text = '', this.onTap, this.color, this.fontSize, this.textAlign = TextAlign.left, this.padding = const EdgeInsets.all(10)});