Contact.fromString constructor

Contact.fromString(
  1. String jsonString
)

Implementation

factory Contact.fromString(String jsonString) {
  return Contact.fromJson(json.decode(jsonString));
}