DeviceClaim.fromJson constructor

DeviceClaim.fromJson(
  1. Map json_
)

Implementation

DeviceClaim.fromJson(core.Map json_)
    : this(
        additionalService: json_.containsKey('additionalService')
            ? json_['additionalService'] as core.String
            : null,
        googleWorkspaceCustomerId:
            json_.containsKey('googleWorkspaceCustomerId')
                ? json_['googleWorkspaceCustomerId'] as core.String
                : null,
        ownerCompanyId: json_.containsKey('ownerCompanyId')
            ? json_['ownerCompanyId'] as core.String
            : null,
        resellerId: json_.containsKey('resellerId')
            ? json_['resellerId'] as core.String
            : null,
        sectionType: json_.containsKey('sectionType')
            ? json_['sectionType'] as core.String
            : null,
        vacationModeExpireTime: json_.containsKey('vacationModeExpireTime')
            ? json_['vacationModeExpireTime'] as core.String
            : null,
        vacationModeStartTime: json_.containsKey('vacationModeStartTime')
            ? json_['vacationModeStartTime'] as core.String
            : null,
      );