CreateThingGroupResponse.fromJson constructor
Implementation
factory CreateThingGroupResponse.fromJson(Map<String, dynamic> json) {
return CreateThingGroupResponse(
thingGroupArn: json['thingGroupArn'] as String?,
thingGroupId: json['thingGroupId'] as String?,
thingGroupName: json['thingGroupName'] as String?,
);
}