LoginButton constructor

const LoginButton({
  1. required String label,
  2. String? href,
  3. List<LoginOption> options = const [],
  4. Key? key,
})

Implementation

const LoginButton({
  required this.label,
  this.href,
  this.options = const [],
  super.key,
});