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