Chip.fromJson constructor
Chip.fromJson(
- 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,
);