DeviceShadowEnrichActivity.fromJson constructor
Implementation
factory DeviceShadowEnrichActivity.fromJson(Map<String, dynamic> json) {
return DeviceShadowEnrichActivity(
attribute: json['attribute'] as String,
name: json['name'] as String,
roleArn: json['roleArn'] as String,
thingName: json['thingName'] as String,
next: json['next'] as String?,
);
}