LoginButtonGroup constructor

const LoginButtonGroup({
  1. required VoidCallback onTapButton1,
  2. required VoidCallback onTapButton2,
  3. String? textButton1,
  4. String? textButton2,
  5. TextStyle? textStyle1,
  6. TextStyle? textStyle2,
})

Implementation

const LoginButtonGroup({
  required this.onTapButton1,
  required this.onTapButton2,
  this.textButton1,
  this.textButton2,
  this.textStyle1,
  this.textStyle2,
});