SocialConfig constructor

SocialConfig({
  1. required String type,
  2. dynamic appId,
  3. Image? icon,
})

Create configuration for social network

requires type to be facebook, linkedin or twitter

The icon is optional to add a custom social network logo

Implementation

SocialConfig({required this.type, this.appId, this.icon});