fromJson static method
Implementation
static ContactMetadata fromJson(Map json) {
return ContactMetadata(
properties: (json['properties'] as List).toProperties(),
accounts: JsonHelpers.decodeList(
json['accounts'] as List?,
Account.fromJson,
),
);
}