PhoneVerificationButton constructor

const PhoneVerificationButton({
  1. Key? key,
  2. required String label,
  3. AuthAction? action,
  4. FirebaseAuth? auth,
})

Implementation

const PhoneVerificationButton({
  Key? key,
  required this.label,
  this.action,
  this.auth,
}) : super(key: key);