GoogleChromePolicyVersionsV1PolicySchemaNoticeDescription.fromJson constructor

GoogleChromePolicyVersionsV1PolicySchemaNoticeDescription.fromJson(
  1. Map json_
)

Implementation

GoogleChromePolicyVersionsV1PolicySchemaNoticeDescription.fromJson(
    core.Map json_)
    : this(
        acknowledgementRequired: json_.containsKey('acknowledgementRequired')
            ? json_['acknowledgementRequired'] as core.bool
            : null,
        field:
            json_.containsKey('field') ? json_['field'] as core.String : null,
        noticeMessage: json_.containsKey('noticeMessage')
            ? json_['noticeMessage'] as core.String
            : null,
        noticeValue: json_.containsKey('noticeValue')
            ? json_['noticeValue'] as core.String
            : null,
      );