SocialButtons constructor

const SocialButtons({
  1. Key? key,
  2. required String text,
  3. required VoidCallback onPressed,
  4. required String icon,
  5. required double width,
  6. required double height,
})

Implementation

const SocialButtons({
  super.key,
  required this.text,
  required this.onPressed,
  required this.icon,
  required this.width,
  required this.height,
});