AuthSocialRow constructor

const AuthSocialRow({
  1. Key? key,
  2. required List methods,
  3. void onTap(
    1. dynamic
    )?,
  4. bool loading = false,
  5. bool disabled = false,
})

Implementation

const AuthSocialRow({
  super.key,
  required this.methods,
  this.onTap,
  this.loading = false,
  this.disabled = false,
});