ProfileRef.fromJson constructor

ProfileRef.fromJson(
  1. Map json_
)

Implementation

ProfileRef.fromJson(core.Map json_)
  : this(
      accountId: json_['accountId'] as core.String?,
      href: json_['href'] as core.String?,
      id: json_['id'] as core.String?,
      internalWebPropertyId: json_['internalWebPropertyId'] as core.String?,
      kind: json_['kind'] as core.String?,
      name: json_['name'] as core.String?,
      webPropertyId: json_['webPropertyId'] as core.String?,
    );