HaveAnAccountLegend constructor

const HaveAnAccountLegend({
  1. Key? key,
  2. required Function onAction,
  3. required bool alreadyHave,
  4. bool upperCase = true,
  5. String? signUpText,
  6. String? signInText,
  7. TextStyle? normalStyle,
  8. TextStyle? actionStyle,
})

Implementation

const HaveAnAccountLegend({
  Key? key,
  required this.onAction,
  required this.alreadyHave,
  this.upperCase = true,
  this.signUpText,
  this.signInText,
  this.normalStyle,
  this.actionStyle,
}) : super(key: key);