CreateThingResponse.fromJson constructor
Implementation
factory CreateThingResponse.fromJson(Map<String, dynamic> json) {
  return CreateThingResponse(
    thingArn: json['thingArn'] as String?,
    thingId: json['thingId'] as String?,
    thingName: json['thingName'] as String?,
  );
}