GenericMiniSocialButton constructor

const GenericMiniSocialButton({
  1. Key? key,
  2. String? logoURL,
  3. dynamic initiator(
    1. BuildContext
    )?,
  4. Color? backgroundColor,
  5. bool useBorder = false,
  6. Color? borderColor,
})

Implementation

const GenericMiniSocialButton({
  Key? key,
  this.logoURL,
  this.initiator,
  this.backgroundColor,
  this.useBorder = false,
  this.borderColor,
}) : super(key: key);