Button constructor

Button({
  1. String? text,
  2. int? value,
})

Implementation

Button({
  this.text,
  this.value,
});