fromMap method
Implementation
static FContactSocialProfileLabeled fromMap(Map map) {
return FContactSocialProfileLabeled(
label: map["label"] as String,
service: map["service"] as String,
userIdentifier: map["userIdentifier"] as String,
username: map["username"] as String,
url: map["url"] as String);
}