fromMap method

FContactInstantMessageAddressLabeled fromMap (Map map)

Implementation

static FContactInstantMessageAddressLabeled fromMap(Map map) {
  return FContactInstantMessageAddressLabeled(
      label: map["label"] as String,
      service: map["service"] as String,
      username: map["username"] as String);
}