TextButton constructor

TextButton({
  1. OnClick? onClick,
  2. String? text,
})

Implementation

TextButton({
  this.onClick,
  this.text,
});