SocialProviderConfig constructor

const SocialProviderConfig({
  1. required String defaultLabel,
  2. required String backgroundColor,
  3. required String foregroundColor,
  4. required String borderColor,
  5. required String hoverBackgroundColor,
  6. required Widget buildIcon(),
})

Implementation

const SocialProviderConfig({
  required this.defaultLabel,
  required this.backgroundColor,
  required this.foregroundColor,
  required this.borderColor,
  required this.hoverBackgroundColor,
  required this.buildIcon,
});