SocialProfile constructor

SocialProfile({
  1. String? twitter,
  2. String? facebook,
  3. String? github,
  4. String? linkedin,
})

Implementation

SocialProfile({
  this.twitter,
  this.facebook,
  this.github,
  this.linkedin,
});