NiceOAuthButtons constructor

const NiceOAuthButtons({
  1. Key? key,
  2. required List<String> providers,
  3. required void onPressed(
    1. String provider
    ),
  4. bool vertical = true,
  5. bool disabled = false,
})

Implementation

const NiceOAuthButtons({
  super.key,
  required this.providers,
  required this.onPressed,
  this.vertical = true,
  this.disabled = false,
});