fromJson static method

PropertyMetadata fromJson(
  1. Map json
)

Implementation

static PropertyMetadata fromJson(Map json) => PropertyMetadata(
  dataId: JsonHelpers.decode<String>(json['dataId']),
  rawContactId: JsonHelpers.decode<String>(json['rawContactId']),
);