fromMap method

FContactValueLabeled fromMap (Map map)

Implementation

static FContactValueLabeled fromMap(Map map) {
  return FContactValueLabeled(
      label: map.keys.first as String, value: map.values.first as String);
}