GaDataProfileInfo.fromJson constructor

GaDataProfileInfo.fromJson(
  1. Map json_
)

Implementation

GaDataProfileInfo.fromJson(core.Map json_)
    : this(
        accountId: json_.containsKey('accountId')
            ? json_['accountId'] as core.String
            : null,
        internalWebPropertyId: json_.containsKey('internalWebPropertyId')
            ? json_['internalWebPropertyId'] as core.String
            : null,
        profileId: json_.containsKey('profileId')
            ? json_['profileId'] as core.String
            : null,
        profileName: json_.containsKey('profileName')
            ? json_['profileName'] as core.String
            : null,
        tableId: json_.containsKey('tableId')
            ? json_['tableId'] as core.String
            : null,
        webPropertyId: json_.containsKey('webPropertyId')
            ? json_['webPropertyId'] as core.String
            : null,
      );