Chip.fromJson constructor

Chip.fromJson(
  1. Map json_
)

Implementation

Chip.fromJson(core.Map json_)
  : this(
      personProperties:
          json_.containsKey('personProperties')
              ? PersonProperties.fromJson(
                json_['personProperties']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      richLinkProperties:
          json_.containsKey('richLinkProperties')
              ? RichLinkProperties.fromJson(
                json_['richLinkProperties']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );